diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-22 23:58:19 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-22 23:58:19 -0300 |
commit | 934b8a0fe645ec1a0693fddb4082fa15e3481b37 (patch) | |
tree | a20836f84279d4dbabb73da35324ac776ff6e2a0 /modules/awesome/config.dot/awesome.link/keys.lua | |
parent | 90f3bf4c1d519e8b7d755f78b525b660b63944e0 (diff) | |
download | dotfiles-934b8a0fe645ec1a0693fddb4082fa15e3481b37.tar.gz dotfiles-934b8a0fe645ec1a0693fddb4082fa15e3481b37.tar.bz2 |
Adding another xlock shortcut into awesome; removing unused widget
Diffstat (limited to 'modules/awesome/config.dot/awesome.link/keys.lua')
-rw-r--r-- | modules/awesome/config.dot/awesome.link/keys.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/awesome/config.dot/awesome.link/keys.lua b/modules/awesome/config.dot/awesome.link/keys.lua index 04e1549..0ec5e0c 100644 --- a/modules/awesome/config.dot/awesome.link/keys.lua +++ b/modules/awesome/config.dot/awesome.link/keys.lua @@ -14,6 +14,9 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, "Control" }, "t", function () awful.util.spawn("thunar") end), --awful.key({ modkey, "Control" }, "b", function () awful.util.spawn("terminal irssi") end), + -- Xlock + awful.key({ }, "XF86ScreenSaver", 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), |