diff --git a/dotfiles/config/hypr/hyprland.lua b/dotfiles/config/hypr/hyprland.lua index fa6663c5..23bba1f1 100644 --- a/dotfiles/config/hypr/hyprland.lua +++ b/dotfiles/config/hypr/hyprland.lua @@ -74,6 +74,10 @@ local scratchpads = { command = "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 = { command = "transmission-gtk", class = "transmission-gtk", @@ -2017,6 +2021,9 @@ end) bind(mod_alt .. " + K", function() toggle_scratchpad("slack") end) +bind(mod_alt .. " + M", function() + toggle_scratchpad("messages") +end) bind(mod_alt .. " + S", function() toggle_scratchpad("spotify") end)