From 0403154128f9a4a282b50561ad940c8daa1e4233 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 15 Apr 2013 16:42:19 +0200 Subject: [PATCH] rules: add Google Chrome as one possible browser --- rc/rules.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/rules.lua b/rc/rules.lua index 3a140f9..ba7fb50 100644 --- a/rc/rules.lua +++ b/rc/rules.lua @@ -21,7 +21,7 @@ awful.rules.rules = { end end end }, - { rule_any = { class = { "Iceweasel", "Firefox", "Chromium", "Conkeror" } }, + { rule_any = { class = { "Iceweasel", "Firefox", "Chromium", "Conkeror", "Google-chrome" } }, callback = function(c) -- All windows should be slaves, except the browser windows. if c.role ~= "browser" then awful.client.setslave(c) end