Files
dotfiles/scripts/focus_app.sh

10 lines
405 B
Bash
Executable File

if xdotool search --class "firefox" getwindowname %@ | grep -q "firefox"; then
if xdotool search --onlyvisible --class "firefox" windowactivate %@; then
echo "firefox is focused. Minimizing."
xdotool search --onlyvisible --class "firefox" windowminimize %@
else
echo "firefox is open but not focused. Focusing the existing instance."
xdotool search --class "firefox" windowactivate %@
fi