]> 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:

suspend apps without focus
[etc/awesome.git] / .config / awesome / rc.lua
index 3695b616de98ccd6ca22ced1529b74df5902f674..18209c005949cae407a7501d0160dbad8dc9e01a 100644 (file)
@@ -520,6 +520,8 @@ awful.rules.rules = {
       properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][9], switchtotag = false, floating = false } },
     { rule = { class = "Icedove", instance = "Mail" },
       properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][8], switchtotag = false, floating = false } },
+    { rule = { class = "chromium" },
+      properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][9], switchtotag = false, floating = false } },
 }
 -- }}}
 
@@ -574,6 +576,27 @@ function hook_battery()
 end
 -- }}}
 
+-- from https://blog.mister-muffin.de/2014/11/07/automatically-suspending-cpu-hungry-applications/
+client.add_signal("focus", function(c)
+  if c.class == "Iceweasel" or c.class == "chromium" or c.class == "Icedove" then
+    awful.util.spawn("kill -CONT " .. c.pid)
+  end
+end)
+client.add_signal("unfocus", function(c)
+  local capi = { timer = timer }
+  if c.class == "Iceweasel" or c.class == "chromium" or c.class == "Icedove" then
+    local timer_stop = capi.timer { timeout = 10 }
+    local send_sigstop = function ()
+      timer_stop:stop()
+      if client.focus.pid ~= c.pid then
+        awful.util.spawn("kill -STOP " .. c.pid)
+      end
+    end
+    timer_stop:add_signal("timeout", send_sigstop)
+    timer_stop:start()
+  end
+end)
+
 -- {{{ Statusbar battery
 --
 function get_acpibatt()