summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-14 16:36:37 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-14 16:36:37 +0200
commit488cde94933fb60f71ec0f2b73fffb4cc8784ee2 (patch)
treeef14e72e8674e13ec8ee9efcb769a4d234510c8e
parent57a33f5e016f96b79bcdde88bbe437cc6273456c (diff)
downloadawesome-configs-488cde94933fb60f71ec0f2b73fffb4cc8784ee2.tar.xz
rc.lua: minimized windows do not stick
-rw-r--r--rc.lua4
-rw-r--r--teardrop.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/rc.lua b/rc.lua
index d946b88..f3c2181 100644
--- a/rc.lua
+++ b/rc.lua
@@ -505,8 +505,8 @@ globalkeys = awful.util.table.join(
awful.client.movetotag(awful.tag.selected(mouse.screen), c)
awful.client.floating.set(c, true)
awful.placement.centered(c)
- c.minimized = false; c.sticky = true
- client.focus = c; c:raise()
+ c.minimized = false
+ c:raise(); client.focus = c
end
end
end),
diff --git a/teardrop.lua b/teardrop.lua
index 79fb750..e27031b 100644
--- a/teardrop.lua
+++ b/teardrop.lua
@@ -15,9 +15,9 @@
-- vert - Vertical; "bottom", "center" or "top" (default)
-- horiz - Horizontal; "left", "right" or "center" (default)
-- width - Width in absolute pixels, or width percentage
--- when < 1 (0.9999 (99.9% of the screen) default)
+-- when < 1 (0.9999 (99.9% of the screen) by default)
-- height - Height in absolute pixels, or height percentage
--- when < 1 (0.25 (25% of the screen) default)
+-- when < 1 (0.25 (25% of the screen) by default)
-- sticky - Visible on all tags, false by default
-- screen - Screen (optional), mouse.screen by default
----------------------------------------------------------------