summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-22 16:51:59 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-22 16:51:59 +0200
commit68bd03ba872d5b6a0dd7b8661e8a9cb54fa89a48 (patch)
tree4276a930bcdfa30f06cb43a76315f5e787ca2efc /rc.lua
parentfeafb9ced02f0290118e4d566e74eb50cd66276e (diff)
downloadawesome-configs-68bd03ba872d5b6a0dd7b8661e8a9cb54fa89a48.tar.xz
rc.lua: fixed fullscreen flash video
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index d16758b..4c25e6d 100644
--- a/rc.lua
+++ b/rc.lua
@@ -48,7 +48,7 @@ layouts = {
-- {{{ Tags
tags = {}
tags.settings = {
- { name = "term", layout = layouts[3] },
+ { name = "term", layout = layouts[2] },
{ name = "emacs", layout = layouts[1] },
{ name = "web", layout = layouts[1] },
{ name = "mail", layout = layouts[7] },
@@ -631,7 +631,7 @@ awful.rules.rules = {
properties = { tag = tags[1][8] } },
{ rule = { class = "Akregator" },
properties = { tag = tags[1][8] } },
- { rule = { class = "Firefox" },
+ { rule = { class = "Firefox", instance = "Navigator" },
properties = { tag = tags[screen.count()][3] } },
{ rule = { class = "Emacs", instance = "emacs" },
properties = { tag = tags[screen.count()][2] } },
@@ -647,6 +647,8 @@ awful.rules.rules = {
properties = { floating = true } },
{ rule = { class = "Pinentry-gtk-2" },
properties = { floating = true } },
+ { rule = { instance = "firefox-bin" },
+ properties = { floating = true } },
}
-- }}}