|
local script = conf_dir .. "modules/i3lock/lock.fish"
|
|
script = script .. " "
|
|
|
|
return {
|
|
keybinds = gears.table.join(
|
|
awful.key( {"Mod4"}, "l",
|
|
function ()
|
|
awful.spawn(script .. beautiful.icons.lockicon, false)
|
|
end,
|
|
|
|
{
|
|
description = "Lock screen",
|
|
group = "System"
|
|
}
|
|
)
|
|
)
|
|
}
|