summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-13 21:48:18 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-13 21:48:18 +0200
commit0846202034d40892f36eef60490a5c818e38330d (patch)
tree9b8df91a979985b789a0bb170076eedb5698082c /rc.lua
parent4ecd13a3c8fd6ec0ddf13219a56e331db8a6e92e (diff)
downloadawesome-configs-0846202034d40892f36eef60490a5c818e38330d.tar.xz
teardrop: controllable position, width, sticky
Clients can now be placed on "top", "bottom" or on the screen "center". The last one is useful when creating scratchpad-like windows, in which case it is useful to control width - which was not possible before. By default a client will take 100% of the screen width so it's easier to create drop-down bindings. Another new property is sticky, mainly useful in the same scenario as center placement.
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index 77285f8..202222e 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", 1) end),
- awful.key({ modkey }, "F2", function () teardrop.toggle("gmrun", 0, 0.08) end),
+ awful.key({ altkey }, "#49", function () teardrop.toggle("urxvt", "bottom") end),
+ awful.key({ modkey }, "F2", function () teardrop.toggle("gmrun", nil, nil, 0.08) end),
awful.key({ modkey }, "a", function ()
awful.util.spawn("urxvt -title Alpine -e alpine_exp", false)
end),