Files
nixos/modules/scripts/dontkillsteam.nix
T
2026-02-26 15:08:56 +01:00

18 lines
308 B
Nix

{ writeShellApplication, hyprland, jq, ... }:
writeShellApplication {
name = "custom-dontkillsteam";
runtimeInputs = [
hyprland
jq
];
text = ''
if [[ $(hyprctl activewindow -j | jq -r ".class") == "Steam" ]]; then
hyprctl dispatch minimize
else
hyprctl dispatch killactive ""
fi
'';
}