Add awesome-launch rockspec
This commit is contained in:
parent
a4739c70dd
commit
ac0804e17a
|
@ -0,0 +1,18 @@
|
|||
package = "awesome-launch"
|
||||
version = "0.1.0-1"
|
||||
source = {
|
||||
url = "git://github.com/jcrd/awesome-launch",
|
||||
tag = "v0.1.0",
|
||||
}
|
||||
description = {
|
||||
summary = "AwesomeWM library for launching clients with single instance IDs",
|
||||
homepage = "https://github.com/jcrd/awesome-launch",
|
||||
license = "GPL-3.0",
|
||||
}
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
["awesome-launch"] = "init.lua",
|
||||
["awesome-launch.uuid"] = "uuid.lua",
|
||||
},
|
||||
}
|
4
init.lua
4
init.lua
|
@ -2,11 +2,11 @@
|
|||
--
|
||||
-- @author James Reed <jcrd@tuta.io>
|
||||
-- @copyright 2019 James Reed
|
||||
-- @module launch
|
||||
-- @module awesome-launch
|
||||
|
||||
local awful = require("awful")
|
||||
local gears = require("gears")
|
||||
local uuid = require("uuid")
|
||||
local uuid = require("awesome-launch.uuid")
|
||||
|
||||
uuid.seed()
|
||||
|
||||
|
|
Loading…
Reference in New Issue