]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/rules.lua
vim: do not set pastetoggle in nvim
[dotfiles.git] / awesome / rules.lua
index 8d9fa4266410a7867aee7811fb82503d3ded4880..76d59e79b1e74aa2882d793c3bd88a57a4b72b4b 100644 (file)
@@ -1,14 +1,19 @@
 local utils = require("utils")
 
 -- {{{ Rules
-if utils.host == "shada"   then mediatag = tags[2][3] end
-if utils.host == "chronos" then mediatag = tags[1][4] end
+local sc = screen.count()
 
-if utils.host == "shada"   then wwwtag = tags[2][1] end
-if utils.host == "chronos" then wwwtag = tags[1][2] end
+if sc == 1 then mediatag = tags[1][9] end
+if sc == 2 then mediatag = tags[2][3] end
 
-if utils.host == "shada"   then imtag = tags[2][2] end
-if utils.host == "chronos" then imtag = tags[1][3] end
+if sc == 1 then wwwtag = tags[1][2] end
+if sc == 2 then wwwtag = tags[2][1] end
+
+if sc == 1 then imtag = tags[1][3] end
+if sc == 2 then imtag = tags[2][2] end
+
+if sc == 1 then socialtag = tags[1][4] end
+if sc == 2 then socialtag = tags[2][4] end
 
 awful.rules.rules = {
     -- All clients will match this rule.
@@ -16,28 +21,37 @@ awful.rules.rules = {
       properties = { border_width = beautiful.border_width,
                      border_color = beautiful.border_normal,
                      focus = awful.client.focus.filter,
+                     raise = true,
                      keys = clientkeys,
-                     buttons = clientbuttons } },
-    { rule = { class = "MPlayer" },
-      properties = { floating = true } },
-    { rule = { class = "pinentry" },
+                     buttons = clientbuttons,
+                     screen = awful.screen.preferred,
+                     placement = awful.placement.no_overlap+awful.placement.no_offscreen } },
+    { rule_any = {
+        class = {
+            "MPlayer",
+            "pinentry",
+            "gimp",
+        },
+        instance = {
+            "qemu",
+        } },
       properties = { floating = true } },
-    { rule = { class = "gimp" },
-      properties = { floating = true } },
-    { rule = { class = "Kmix" },
+    { rule = { class = "mpv" },
+      properties = { border_width = 0,
+                     floating = true }},
+    { rule = { class = terminal_class, instance = "pulsemixer" },
       properties = { floating = true,
                      skip_taskbar = true,
                      ontop = true,
-                     x = 1920 - 310, y = mywibox[mouse.screen].height,
-                     height = 100, width = 100 } },
-    { rule = { class = "Clementine" },
-      properties = { tag = mediatag,
-                     switchtotag = true } },
-    { rule = { class = "Qupzilla" },
-      properties = { tag = wwwtag } },
-    { rule = { class = "Quassel" },
-      properties = { tag = imtag } },
-    { rule = { class = "Kopete" },
-      properties = { tag = imtag } },
+                     placement = awful.placement.top_right,
+                     function (c)
+                         s = awful.screen.focused()
+                         c:connect_signal("unfocus", function (c) c:kill() end)
+                     end } },
+    { rule = { class = "Wine"},
+      properties = { floating = true } },
+    { rule = { class = terminal_class },
+      properties = { opacity = 0.95 } },
+    { rule_any = { class = { "Steam", "steam" } },
+      properties = { tag = tags[1][9] } },
 }
--- }}}