]> git.madduck.net Git - etc/awesome.git/blobdiff - .config/awesome/rc.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fixup chromium xprop
[etc/awesome.git] / .config / awesome / rc.lua
index cd7b3005e32f1a47195ef7f92cf95ff52522aaef..1b82fb9060deb97403436bdd37501270b9251977 100644 (file)
@@ -175,7 +175,8 @@ mytasklist = {}
 mytasklist.buttons = awful.util.table.join(
                      awful.button({ }, 1, function (c)
                                               if c == client.focus then
-                                                  c.minimized = true
+                                                  -- I don't like click-minimising
+                                                  -- c.minimized = true
                                               else
                                                   -- Without this, the following
                                                   -- :isvisible() makes no sense
@@ -581,13 +582,16 @@ awful.rules.rules = {
                },
                callback = move_to_tag(screen.count() == 1 and 1 or 2, 8)
            },
-    { rule = { class = "chromium", instance = "chromium" },
+    { rule = { class = "Chromium", instance = "chromium" },
                properties = {
                    floating = false,
                },
                callback = move_to_tag(screen.count() == 1 and 1 or 2, 9)
            },
     { rule = { class = "Gscan2pdf" },
+               properties = {
+                   switchtotag = true
+               },
                callback = move_to_tag(1, 5)
            },
     { rule = { name = "gscan2pdf .*" },
@@ -671,6 +675,8 @@ end)
 client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
 client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
 
-awful.ewmh.add_activate_filter(function(c) if c.class == "Firefox" then return false end end)
+awful.ewmh.add_activate_filter(function(c, context, hints)
+    if context == "ewmh" and c.class == "Firefox" then return false end
+end)
 
 -- vim:ft=lua:sw=4:sts=4:ts=4:et