summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-13 18:32:29 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-13 18:32:29 +0200
commit4ecd13a3c8fd6ec0ddf13219a56e331db8a6e92e (patch)
tree7a0c5112692912d6a57a2fe04fc0828f6d7a54a4 /rc.lua
parentb76b9429356df9233446a1b42216bbcac7f09d74 (diff)
downloadawesome-configs-4ecd13a3c8fd6ec0ddf13219a56e331db8a6e92e.tar.xz
teardrop: added more improvements
- teardrop clients drop down from the top by default - teardrop clients are not visible on the tasklist - teardrop clients don't have titlebars
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.lua b/rc.lua
index f37f3b5..77285f8 100644
--- a/rc.lua
+++ b/rc.lua
@@ -424,8 +424,8 @@ globalkeys = awful.util.table.join(
awful.key({ modkey }, "u", function () awful.util.spawn("utorrent", false) end),
awful.key({ modkey }, "w", function () awful.util.spawn("firefox", false) end),
awful.key({ altkey }, "F1", function () awful.util.spawn("urxvt", false) end),
- awful.key({ altkey }, "#49", function () teardrop.toggle("urxvt") end),
- awful.key({ modkey }, "F2", function () teardrop.toggle("gmrun", 1, 0.08) end),
+ awful.key({ altkey }, "#49", function () teardrop.toggle("urxvt", 1) end),
+ awful.key({ modkey }, "F2", function () teardrop.toggle("gmrun", 0, 0.08) end),
awful.key({ modkey }, "a", function ()
awful.util.spawn("urxvt -title Alpine -e alpine_exp", false)
end),
@@ -605,7 +605,7 @@ clientkeys = awful.util.table.join(
awful.key({ modkey, "Shift" }, "0", function (c) c.sticky = not c.sticky end),
awful.key({ modkey, "Shift" }, "o", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, "Shift" }, "t", function (c)
- if c.titlebar then awful.titlebar.remove(c)
+ if c.titlebar then awful.titlebar.remove(c)
else awful.titlebar.add(c, { modkey = modkey }) end
end),
awful.key({ modkey, "Control" }, "r", function (c) c:redraw() end),