From 9bce712f191f4cb57ea3d827241f6462cab66cfb Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 26 Sep 2016 21:23:38 +0200 Subject: [PATCH] limit tag placement to main windows/instances --- .config/awesome/rc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 920d28f..ee17164 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -564,19 +564,19 @@ awful.rules.rules = { }, callback = move_to_tag(screen.count(), screen.count() == 1 and 2 or 1) }, - { rule = { class = "Firefox" }, + { rule = { class = "Firefox", instance = "Navigator" }, properties = { floating = false, }, callback = move_to_tag(screen.count() == 1 and 1 or 2, 9) }, - { rule = { class = "Icedove" }, + { rule = { class = "Icedove", instance = "Mail" }, properties = { floating = false, }, callback = move_to_tag(screen.count() == 1 and 1 or 2, 8) }, - { rule = { class = "chromium" }, + { rule = { class = "chromium", instance = "chromium" }, properties = { floating = false, }, -- 2.39.5