fix: music-launcher

This commit is contained in:
kenji
2025-12-27 22:11:03 -06:00
parent 34a0243c43
commit 59340e4d6d
7 changed files with 42 additions and 38 deletions
-1
View File
@@ -7,7 +7,6 @@
./hypr/animation.nix
./hypr/misc.nix
./hypr/input.nix
./music.nix
];
wayland.windowManager.hyprland.enable = true;
wayland.windowManager.hyprland.systemd.enable = false; # for UWSM support...
+1 -1
View File
@@ -24,7 +24,7 @@
"[workspace 1] uwsm app -- xdg-terminal-exec"
"[workspace special:steam silent] uwsm app -- steam"
"music-launcher"
"launch-music"
];
};
}
-8
View File
@@ -27,18 +27,10 @@
# --- MUSIC RULES (Jellyfin-TUI) ---
"workspace special:music silent, title:^(jellyfin-tui)$"
"workspace special:music silent, initialTitle:^(jellyfin-tui)$"
"noinitialfocus, title:^(jellyfin-tui)$"
"noinitialfocus, initialTitle:^(jellyfin-tui)$"
"suppressevent activate, title:^(jellyfin-tui)$"
"suppressevent activate, initialTitle:^(jellyfin-tui)$"
# --- CAVA RULES ---
"workspace special:music silent, title:^(cava)$"
"workspace special:music silent, initialTitle:^(cava)$"
"noinitialfocus, title:^(cava)$"
"noinitialfocus, initialTitle:^(cava)$"
"suppressevent activate, title:^(cava)$"
"suppressevent activate, initialTitle:^(cava)$"
# --- GAMING RULES ---
# Steam Apps, Gamescope, Lutris, Heroic, and Wine/Proton apps
-22
View File
@@ -1,22 +0,0 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
(writeShellScriptBin "music-launcher" ''
# Launch Jellyfin TUI first
uwsm app -- /usr/bin/env ghostty --class=jellyfin-tui --title=jellyfin-tui -e jellyfin-tui &
# Wait for window to appear
sleep 0.5
# Focus the window to apply layout rules (Required for layoutmsg)
# This ensures the preselect command applies to this specific window
${pkgs.hyprland}/bin/hyprctl dispatch focuswindow title:jellyfin-tui
# Force the next window to be placed to the right (Side-by-Side / Horizontal)
# Change to 'preselect d' for Top/Bottom split
${pkgs.hyprland}/bin/hyprctl dispatch layoutmsg preselect r
# Launch Cava
uwsm app -- /usr/bin/env ghostty --class=cava --title=cava -e cava &
'')
];
}