hyprland: park spotify-player on special:music, toggle with SUPER+M
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
parent
dd7ba284f7
commit
9514664a55
2 changed files with 28 additions and 1 deletions
|
|
@ -272,6 +272,10 @@ in
|
|||
hl.exec_cmd("wl-paste --type text --watch cliphist store")
|
||||
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
||||
hl.exec_cmd("hyprctl setcursor Bibata-Modern-Ice 24")
|
||||
-- Warms spotify-player's Spotify Connect device while you're
|
||||
-- doing something else; the window rule above swallows it onto
|
||||
-- special:music silently, so it never steals focus.
|
||||
hl.exec_cmd("ghostty --title=spotify-player -e spotify_player")
|
||||
-- swayosd removed; volume/brightness OSD handled by quickshell
|
||||
${lib.optionalString isMacbook ''hl.exec_cmd("hypridle")''}
|
||||
end)
|
||||
|
|
@ -310,6 +314,19 @@ in
|
|||
workspace = "special silent",
|
||||
})
|
||||
|
||||
-- spotify-player lives on a special workspace for its whole
|
||||
-- session. Its librespot device takes ~20s to be accepted by
|
||||
-- Spotify's backend, and that cost is per *process*, so relaunching
|
||||
-- a terminal for it means waiting every time. Parking one instance
|
||||
-- here pays it once at login; SUPER+M slides it in and out.
|
||||
-- Matched on title, not class: gtk-single-instance means every
|
||||
-- ghostty window is the same app-id, and --title is authoritative
|
||||
-- (ghostty ignores the program's own title escapes once it is set).
|
||||
hl.window_rule({
|
||||
match = { title = "^spotify-player$" },
|
||||
workspace = "special:music silent",
|
||||
})
|
||||
|
||||
-- Games stall on other workspaces: no frame callbacks = no render =
|
||||
-- game loop blocks. Keep them ticking in the background at
|
||||
-- misc:render_unfocused_fps (15).
|
||||
|
|
@ -362,6 +379,7 @@ in
|
|||
hl.bind(mod .. " + F", hl.dsp.window.fullscreen())
|
||||
hl.bind(mod .. " + P", hl.dsp.window.pseudo())
|
||||
hl.bind(mod .. " + S", hl.dsp.layout("togglesplit"))
|
||||
hl.bind(mod .. " + M", hl.dsp.workspace.toggle_special("music"))
|
||||
|
||||
-- Focus
|
||||
hl.bind(mod .. " + left", hl.dsp.focus({ direction = "left" }))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue