]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Constrict Zoom & SSVNC to a single tag
authormartin f. krafft <madduck@madduck.net>
Sun, 6 Feb 2022 13:50:05 +0000 (14:50 +0100)
committermartin f. krafft <madduck@madduck.net>
Sun, 6 Feb 2022 13:52:42 +0000 (14:52 +0100)
.config/awesome/rc.lua

index 5e9a765f2d8455bca40d370b28f91c97cc6386f6..e64d1fe46ac1efba389b91f65e9b15737da788f1 100644 (file)
@@ -987,6 +987,17 @@ local function move_to_tag_by_name(s, tagname)
     end
 end
 
+local function move_to_tag_or_create_volatile(s, tagname)
+    return function(c)
+        local t = awful.tag.find_by_name(s, tagname)
+        if t then
+            c:move_to_tag(t)
+        else
+            th.move_to_new_tag(c, tagname, {}, true, true, true)
+        end
+    end
+end
+
 awful.rules.rules = {
     -- All clients will match this rule.
     { rule = { },
@@ -1037,6 +1048,15 @@ awful.rules.rules = {
           switchtotag = true,
       },
     },
+    { rule_any = { class = { "zoom" } },
+      callback = move_to_tag_or_create_volatile(nil, "Zoom"),
+    },
+    { rule_any = { class = { "Ssvnc.tcl" },
+                   class = { "Ssvnc" },
+                   name = { "SSL/SSH VNC Viewer.-" },
+                 },
+      callback = move_to_tag_or_create_volatile(nil, "SSVNC"),
+    },
     { rule_any = { class = {
         "Gxmessage",
         "Pinentry"