44 lines
1.0 KiB
Lua
Executable File
44 lines
1.0 KiB
Lua
Executable File
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
|
|
},
|
|
|
|
backlight = {
|
|
redshift = function(temp)
|
|
awful.spawn("redshift -O " .. tostring(temp), false)
|
|
end,
|
|
|
|
redshift_reset = function()
|
|
awful.spawn("redshift -x", false)
|
|
end,
|
|
},
|
|
|
|
rofi = {
|
|
launcher = function()
|
|
awful.spawn("rofi -show drun -theme \"" .. bin_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
|
|
}
|
|
}
|