From 0c2db260cd41d634b65b473df6e88109faf5806d Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 16 Sep 2012 23:41:03 +0200 Subject: .config/awesome/rc.lua --- .config/awesome/rc.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.config') diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index e3d4548..4c5d93c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -351,12 +351,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 ), -- cgit v1.2.3-54-g00ecf