diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-12-07 08:24:24 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-12-07 08:28:16 +0100 |
commit | ec733a3377669bf39aabe0950e7fbfd8728273ec (patch) | |
tree | 361a6e7321909411252545b9512459e2b60af496 | |
parent | be734416633f2e4b06fc0baae36c7e0483d9ef4a (diff) | |
download | dotfiles-ec733a3377669bf39aabe0950e7fbfd8728273ec.tar.gz dotfiles-ec733a3377669bf39aabe0950e7fbfd8728273ec.tar.bz2 dotfiles-ec733a3377669bf39aabe0950e7fbfd8728273ec.zip |
awesome: Remove handling suspend
Systemd-logind defaults to doing this automatically,
using it is much more consistent exprience, since it works on VT as
well. :)
-rw-r--r-- | .config/awesome/awesome.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua index dc9f9f0..429dff4 100644 --- a/.config/awesome/awesome.lua +++ b/.config/awesome/awesome.lua @@ -232,8 +232,6 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "Print", function () awful.util.spawn("scrot -s") end), awful.key({ modkey, }, "Pause", function () awful.util.spawn("xset r rate 250 50") end), - awful.key({ }, "XF86Suspend", function () awful.util.spawn("systemctl suspend") end), - awful.key({ }, "XF86Sleep", function () awful.util.spawn("systemctl suspend") end), awful.key({ }, "XF86MonBrightnessUp", function () awful.util.spawn("sudo brightness up") end), awful.key({ }, "XF86MonBrightnessDown", function () awful.util.spawn("sudo brightness down") end), awful.key({}, "XF86TouchpadToggle", function () awful.util.spawn(cmd.tggle_tpd) end), |