From 1662b2e280168bbf36f65487e7c44fa08c0ac72a Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 8 Aug 2012 00:16:31 +0200 Subject: [PATCH] rules: add an icon for Conkeror --- rc/rules.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rc/rules.lua b/rc/rules.lua index 7d199fd..9808d4d 100644 --- a/rc/rules.lua +++ b/rc/rules.lua @@ -1,3 +1,5 @@ +local icons = loadrc("icons", "vbe/icons") + awful.rules.rules = { -- All clients will match this rule. { rule = { }, @@ -22,6 +24,9 @@ awful.rules.rules = { properties = { floating = true }}, -- Flash with Firefox { rule = { instance = "exe", class="Exe", instance="exe" }, properties = { floating = true }}, -- Flash with Chromium + { rule = { class = "Conkeror" }, + properties = { icon = image(icons.lookup({ name = "web-browser", + type = "apps" })) }}, -- Pidgin { rule = { class = "Pidgin" }, except = { type = "dialog" },