summaryrefslogtreecommitdiffstats
path: root/.config/awesome/rc.lua
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-09-17 20:32:32 +0200
committerGravatar Tom Willemsen2012-09-17 20:32:32 +0200
commit1a767eeab08efee8ca5d5d26e946b0cae54b203e (patch)
treed080eca0db5cff01da2d03d20c6e65b4f8c3fdf8 /.config/awesome/rc.lua
parentaa949b255f4dc3ef4b129491ea3a19a3254158ba (diff)
parentd6c8f4f979448576ff2041bda13b963999e03626 (diff)
downloaddotfiles-1a767eeab08efee8ca5d5d26e946b0cae54b203e.tar.gz
dotfiles-1a767eeab08efee8ca5d5d26e946b0cae54b203e.zip
Merge remote-tracking branch 'origin/master' into phoenix
Diffstat (limited to '.config/awesome/rc.lua')
-rw-r--r--.config/awesome/rc.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index f3f4e65..4ad3bf4 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -285,12 +285,18 @@ globalkeys = awful.util.table.join(
sub({ }, "e",
function () oni.run_or_raise("emacsclient -c -a emacs",
{ class = "Emacs" }) end),
+ sub({ "Shift", }, "e",
+ function () awful.util.spawn("emacsclient -c -a emacs") end),
sub({ }, "c",
function () oni.run_or_raise("urxvt",
{ class = "URxvt" }) end),
+ sub({ "Shift", }, "c",
+ function () awful.util.spawn("urxvt") end),
sub({ }, "w",
function () oni.run_or_raise("conkeror",
- { class = "Conkeror" }) end) }),
+ { class = "Conkeror" }) end),
+ sub({ "Shift", }, "w",
+ function () awful.util.spawn("conkeror") end) }),
awful.key({ "Control", "Mod1" }, "l",
function () awful.util.spawn("i3lock -c 000000") end),
awful.key({ modkey, }, "Left", awful.tag.viewprev ),