9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(hyprctl activewindow -j | jq -r ".class")" = "Steam" ]; then
|
|
xdotool getactivewindow windowunmap
|
|
else
|
|
hyprctl dispatch killactive ""
|
|
fi
|
|
|