diff options
-rw-r--r-- | config/awesome/weasel-rules.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/awesome/weasel-rules.lua b/config/awesome/weasel-rules.lua index 9d387d5..c5a1280 100644 --- a/config/awesome/weasel-rules.lua +++ b/config/awesome/weasel-rules.lua @@ -5,8 +5,13 @@ function get_weasel_rules() local im_screen = 1 local rules = { + { rule = { class = "zoom" }, + properties = { above = false } }, + { rule = { class = "plasmashell" }, properties = { floating = true } }, + { rule = { class = "Matplotlib" }, + properties = { floating = true } }, { rule = { class = "Vncviewer" }, properties = { floating = true } }, @@ -63,6 +68,8 @@ function get_weasel_rules() { rule = { class = "okular" , name = "Okular" }, properties = { floating = true } }, + { rule = { class = "Atril" , name = "Atril Document Viewer" }, + properties = { floating = true } }, { rule = { name = "Xnest" }, properties = { floating = true } }, @@ -71,6 +78,11 @@ function get_weasel_rules() { rule = { class = "Display-im6.q16" , name = "ImageMagick: " }, properties = { floating = true } }, + { rule = { class = "Steam" }, + properties = { screen = im_screen, tag = '25' } }, + { rule = { class = "factorio" }, + properties = { screen = im_screen, tag = '25' } }, + --{ rule = { maximized_horizontal = true }, -- these two should remove window borders from maximized windows because they get in the way -- properties = { border_width = 0 } }, --{ rule = { maximized_vertical = true }, |