From c45073c276ef8107849ab53c7a62019cfda16b35 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 28 Oct 2018 11:28:37 +0000 Subject: [PATCH] [awesome] add default tags --- home/.config/awesome/rc.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/home/.config/awesome/rc.lua b/home/.config/awesome/rc.lua index 9504a0f..3a95a9a 100644 --- a/home/.config/awesome/rc.lua +++ b/home/.config/awesome/rc.lua @@ -495,6 +495,20 @@ awful.rules.rules = { "pop-up", } }, properties = { floating = true }}, + + -- Default tags + { properties = { tag = "2" }, rule = { class = "Chromium" } }, + { properties = { tag = "2" }, rule = { class = "Firefox" } }, + { properties = { tag = "3" }, rule = { class = "Claws-mail" } }, + { properties = { tag = "3" }, rule = { class = "Mumble" } }, + { properties = { tag = "4" }, rule = { class = "Evince" } }, + { properties = { tag = "4" }, rule = { class = "Gscan2pdf" } }, + { properties = { tag = "4" }, rule = { class = "libreoffice" } }, + { properties = { tag = "5" }, rule = { class = "Audacious" } }, + { properties = { tag = "5" }, rule = { class = "Pavucontrol" } }, + { properties = { tag = "8" }, rule = { class = "Darktable" } }, + { properties = { tag = "8" }, rule = { class = "Gimp" } }, + { properties = { tag = "8" }, rule = { class = "Inkscape" } }, } -- }}}