diff options
Diffstat (limited to 'config.dot/awesome.link/keys.lua')
-rw-r--r-- | config.dot/awesome.link/keys.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 5e2ec36..bb9711f 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -15,7 +15,7 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "s", function () awful.util.spawn("xsuspend") end), awful.key({ modkey, }, "t", function () awful.util.spawn("tor-browser") end), awful.key({ modkey, }, "u", function () awful.util.spawn("luakit") end), - awful.key({ modkey, }, "v", function () awful.util.spawn("gvim") end), + awful.key({ modkey, }, "v", function () awful.util.spawn("terminal vim") end), awful.key({ modkey, }, "x", function () awful.util.spawn("terminal shell network") end), awful.key({ modkey, }, "z", function () awful.util.spawn("terminal shell root") end), awful.key({ modkey, }, "y", function () awful.util.spawn("xclip-clean") end), @@ -24,9 +24,9 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "Print", function () awful.util.spawn("xlock") end), -- Volume keys - awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer set Master 9%+", false) end), - awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("amixer set Master 9%-", false) end), - awful.key({ }, "XF86AudioMute", function () awful.util.spawn("amixer sset Master toggle", false) end), + awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer set Master 9%+", false) end), + awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("amixer set Master 9%-", false) end), + awful.key({ }, "XF86AudioMute", function () awful.util.spawn("amixer set Master toggle", false) end), -- Hibernate awful.key({ }, "XF86Launch1", function () awful.util.spawn("xhibernate") end), @@ -36,10 +36,10 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, "Control" }, "m", function () awful.util.spawn("vbox up messenger") end), awful.key({ modkey, "Control" }, "b", function () awful.util.spawn("vbox up bankline") end), awful.key({ modkey, "Control" }, "t", function () awful.util.spawn("vbox up tor") end), - awful.key({ modkey, "Shift" }, "w", function () awful.util.spawn("vbox down web") end), - awful.key({ modkey, "Shift" }, "m", function () awful.util.spawn("vbox down messenger") end), - awful.key({ modkey, "Shift" }, "b", function () awful.util.spawn("vbox down bankline") end), - awful.key({ modkey, "Shift" }, "t", function () awful.util.spawn("vbox down tor") end) + awful.key({ modkey, "Shift" }, "w", function () awful.util.spawn("vbox down web") end), + awful.key({ modkey, "Shift" }, "m", function () awful.util.spawn("vbox down messenger") end), + awful.key({ modkey, "Shift" }, "b", function () awful.util.spawn("vbox down bankline") end), + awful.key({ modkey, "Shift" }, "t", function () awful.util.spawn("vbox down tor") end) ) -- Append keys from music widget |