37 lines
924 B
Lua
Executable File
37 lines
924 B
Lua
Executable File
dir = configuration_dir .. "bin/"
|
|
local script_dir = dir .. "scripts/"
|
|
|
|
return {
|
|
|
|
system = {
|
|
shutdown = function(confirm_prompt)
|
|
if (string.lower(confirm_prompt) == "y") or (string.lower(confirm_prompt) == "yes") then
|
|
awful.spawn("shutdown now", false)
|
|
elseif (string.lower(confirm_prompt) == "r") or (string.lower(confirm_prompt) == "reset") then
|
|
awful.spawn("shutdown -r now", false)
|
|
end
|
|
end,
|
|
|
|
lock = function()
|
|
awful.spawn(script_dir .. "lock " .. beautiful.icons.lockicon, false)
|
|
end
|
|
},
|
|
|
|
rofi = {
|
|
launcher = function()
|
|
awful.spawn("rofi -show drun -theme \"" .. dir .. "/rofi/launcher.rasi\"")
|
|
end
|
|
},
|
|
|
|
capture = function(source, target)
|
|
awful.spawn(script_dir .. "capture " .. source .. " " .. target, false)
|
|
end,
|
|
|
|
flameshot = {
|
|
gui = function()
|
|
--awful.spawn("flameshot gui -p \"" .. conf.screenshot_dir .. "\"", false)
|
|
awful.spawn("flameshot gui", false)
|
|
end
|
|
}
|
|
}
|