6 lines
164 B
Bash
6 lines
164 B
Bash
|
if [[ $(hyprctl activewindow -j | jq -r ".class") == "Steam" ]]; then
|
||
|
xdotool windowunmap $(xdotool getactivewindow)
|
||
|
else
|
||
|
hyprctl dispatch killactive ""
|
||
|
fi
|