]> 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:

fix virt-manager tagging master
authormartin f. krafft <madduck@madduck.net>
Fri, 22 Nov 2024 08:11:35 +0000 (09:11 +0100)
committermartin f. krafft <madduck@madduck.net>
Fri, 22 Nov 2024 08:11:35 +0000 (09:11 +0100)
.config/awesome/rc.lua

index c72fd6285c3499317fe3b6c262c876875ba98dbc..8cd1967a1bf277a2a3b62500b1a1ae28550a4d3f 100644 (file)
@@ -473,12 +473,29 @@ end
 default_tags[1].selected = true
 
 default_tags = gears.table.join(default_tags, {
+  {
+    name        = "vrt",
+    init        = true,
+    exclusive   = true,
+    layout      = layouts.maximised,
+    selected    = false,
+    exec_once   = { "remmina" },
+    instance    = { "Remmina" },
+    targets     = {
+                    "gern/DP-?[12]-1",
+                    "gauting/eDP-?1",
+                    "toni/eDP-?1",
+                    "krafftwerk/DP-?1-1-5",
+                    "krafftwerk/DisplayPort-2",
+                    "cafe/eDP-?1"
+                },
+  },
   {
     name        = "irc",
     init        = true,
     exclusive   = true,
     layout      = layouts.tiled,
-    selected    = true,
+    selected    = false,
     exec_once   = { terminal .. " -name irc -e env MOSH_TITLE_NOPREFIX=true mosh --family=all -- irc-host tmux new -As irc irssi" },
     instance    = { "irc" },
     targets     = {
@@ -825,6 +842,10 @@ globalkeys = gears.table.join(
     awful.key({ modkey, "Control", "Shift", "Mod1" }, "a", th.collect_orphan_clients_to_tag,
               {description = "collect all orphaned clients", group = "client"}),
 
+    awful.key({ modkey }, "t", toggle_tag_by_name("vrt", true),
+              {description = "view tag 'vrt'", group = "tag"}),
+    awful.key({ modkey, "Control" }, "t", toggle_tag_by_name("vrt"),
+              {description = "toggle tag 'vrt'", group = "tag"}),
     awful.key({ modkey }, "y", toggle_tag_by_name("irc", true),
               {description = "view tag 'irc'", group = "tag"}),
     awful.key({ modkey, "Control" }, "y", toggle_tag_by_name("irc"),
@@ -862,8 +883,8 @@ clientkeys = gears.table.join(
               {description = "move to master", group = "client"}),
     awful.key({ modkey,           }, "z",      function (c) c:move_to_screen() end,
               {description = "move to screen", group = "client"}),
-    awful.key({ modkey,           }, "t",      function (c) c.ontop = not c.ontop            end,
-              {description = "toggle keep on top", group = "client"}),
+    --awful.key({ modkey,           }, "t",      function (c) c.ontop = not c.ontop            end,
+    --          {description = "toggle keep on top", group = "client"}),
     awful.key({ modkey,           }, "n",
         function (c)
             -- The client currently has the input focus, so it cannot be
@@ -943,15 +964,15 @@ awful.key({ cmdkey }, "m", function () awful.spawn(terminal .. " -name mutt -e m
 awful.key({ cmdkey }, "t", function () awful.spawn("thunderbird") end),
 awful.key({ cmdkey }, "g", function () awful.spawn("gscan2pdf") end),
 awful.key({ cmdkey, "Shift" }, "v", function () awful.spawn("virt-manager") end),
+awful.key({ cmdkey, "Shift" }, "r", function () awful.spawn("remmina") end),
 awful.key({ cmdkey }, "l", function () awful.spawn("libreoffice") end),
-awful.key({ cmdkey }, "v", function () awful.spawn("remmina") end),
+awful.key({ cmdkey }, "v", function () awful.spawn("virt-viewer") end),
 awful.key({ cmdkey }, "p", function () awful.spawn("pavucontrol") end),
 awful.key({ cmdkey }, "i", function () awful.spawn(terminal .. " -name irc -e env MOSH_TITLE_NOPREFIX=true mosh --family=all -- irc-host tmux new -As irc irssi") end),
 awful.key({ cmdkey }, "x", function ()
-    awful.spawn("xautolock -enable")
-    awful.spawn("xautolock -locknow")
+    run_output_notify("sh -c '. ~/.xsession.d/10-xautolock; echo \"Locking…\"; sleep 1; xautolock -locknow'", "Enabling xautolock")
 end),
-awful.key({ cmdkey, "Shift" }, "x", function () awful.spawn("xautolock -disable") end),
+awful.key({ cmdkey, "Shift" }, "x", function () run_output_notify("pkill -e xautolock", "Disabling xautolock") end),
 
 awful.key({ cmdkey }, "BackSpace", function () awful.spawn("pkill -USR1 offlineimap") end),
 
@@ -1086,6 +1107,13 @@ awful.rules.rules = {
     { rule_any = { class = { "Firefox", "firefox" } },
       callback = move_to_tag_by_name(nil, "ffx"),
     },
+    { rule_any = { class = { "org.remmina.Remmina",
+                             "Virt-viewer",
+                             "virt-manager"
+                           },
+                 },
+      callback = move_to_tag_by_name(nil, "vrt"),
+    },
     { rule = { class = "Chromium" },
       callback = move_to_tag_by_name(nil, "chr"),
     },
@@ -1138,7 +1166,6 @@ awful.rules.rules = {
                         "Inkscape",
                         "Pitivi",
                         "Audacity",
-                        "org.remmina.Remmina",
                     },
                     instance = {
                         "libreoffice",
@@ -1149,7 +1176,7 @@ awful.rules.rules = {
                         layout = layouts.maximised,
                         volatile = true,
                     },
-                     --switchtotag = true,
+                     switchtotag = true,
                      focus = true,
                    },
                },