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