1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 12:30:32 +01:00

Add print screen options

This commit is contained in:
Bert Peters
2017-03-20 15:44:00 +01:00
parent 771ece4345
commit e29d42bc92

View File

@@ -345,7 +345,12 @@ globalkeys = awful.util.table.join(
awful.spawn("xbacklight -inc 15") end),
-- Lock screen
awful.key({ modkey, "Shift" }, "l", function () awful.spawn("gnome-screensaver-command --lock") end)
awful.key({ modkey, "Shift" }, "l", function () awful.spawn("gnome-screensaver-command --lock") end),
-- Print screen tools
awful.key({ }, "Print", function () awful.spawn("gnome-screenshot") end),
awful.key({ "Shift" }, "Print", function () awful.spawn("gnome-screenshot -w") end),
awful.key({ "Control" }, "Print", function () awful.spawn("gnome-screenshot -a") end)
)
clientkeys = awful.util.table.join(