mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
18 lines
308 B
Nix
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
|
|
|
|
'';
|
|
}
|