Add Google Messages scratchpad

This commit is contained in:
2026-05-04 23:17:28 -07:00
parent cfe0ca59bf
commit 16fa31887a

View File

@@ -74,6 +74,10 @@ local scratchpads = {
command = "slack", command = "slack",
class = "Slack", class = "Slack",
}, },
messages = {
command = "google-chrome-stable --profile-directory=Default --app=https://messages.google.com/web/conversations",
class = "chrome-messages.google.com__web_conversations-default",
},
transmission = { transmission = {
command = "transmission-gtk", command = "transmission-gtk",
class = "transmission-gtk", class = "transmission-gtk",
@@ -2017,6 +2021,9 @@ end)
bind(mod_alt .. " + K", function() bind(mod_alt .. " + K", function()
toggle_scratchpad("slack") toggle_scratchpad("slack")
end) end)
bind(mod_alt .. " + M", function()
toggle_scratchpad("messages")
end)
bind(mod_alt .. " + S", function() bind(mod_alt .. " + S", function()
toggle_scratchpad("spotify") toggle_scratchpad("spotify")
end) end)