summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-12-14 07:39:49 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-12-14 07:40:22 +0100
commit0a3b51a48d5a233b12aea85d9d155834ba1f0043 (patch)
tree3a22f7752d85e0cd34b61c484cdba118e4a2bd6c
parent729c9e7063bf688e7c4b7e9267ae17b61a68a258 (diff)
downloadawesome-configs-0a3b51a48d5a233b12aea85d9d155834ba1f0043.tar.xz
rc.lua: fixed alpine bindings
-rw-r--r--rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index 8e2606a..53b4940 100644
--- a/rc.lua
+++ b/rc.lua
@@ -159,7 +159,7 @@ mailwidget = widget({ type = "textbox" })
vicious.register(mailwidget, vicious.widgets.mbox, "$1", 181, {home .. "/mail/Inbox", 15})
-- Register buttons
mailwidget:buttons(awful.util.table.join(
- awful.button({ }, 1, function () exec("urxvt -T Alpine -e alpine_exp") end)
+ awful.button({ }, 1, function () exec("urxvt -T Alpine -e alpine.exp") end)
))
-- }}}
@@ -316,7 +316,7 @@ globalkeys = awful.util.table.join(
awful.key({ modkey }, "w", function () exec("firefox") end),
awful.key({ altkey }, "F1", function () exec("urxvt") end),
awful.key({ altkey }, "#49", function () scratch.drop("urxvt", "bottom") end),
- awful.key({ modkey }, "a", function () exec("urxvt -T Alpine -e alpine_exp") end),
+ awful.key({ modkey }, "a", function () exec("urxvt -T Alpine -e alpine.exp") end),
awful.key({ modkey }, "g", function () sexec("GTK2_RC_FILES=~/.gtkrc-gajim gajim") end),
awful.key({ modkey }, "q", function () exec("emacsclient --eval '(make-remember-frame)'") end),
-- }}}