Files
dotfiles/scripts/focus_app.sh
2024-11-19 12:26:15 +02:00

10 lines
152 B
Bash
Executable File

APP=$1
WID=$(xdotool search --class "$APP" | head -n 1)
if [ -z "$WID" ]; then
nohup $APP &>/dev/null &
else
xdotool windowactivate "$WID"
fi