dotfiles/scripts/qblof
2022-03-11 07:16:33 -06:00

40 lines
865 B
Bash
Executable file

#!/bin/sh
# Check to see if firefox is running
if pgrep -x qutebrowser > /dev/null; then
echo "qb running"
if [ $XDG_SESSION_TYPE = "x11" ]; then
#X11
echo "X11"
qbrg=$(wmctrl -lx | rg qutebrowser | awk '{print $1}')
# echo $emacsrg
if [ -z $qbrg ]; then
qutebrowser
exit
else
wmctrl -ia $qbrg
exit
fi
else
if [ $KDE_FULL_SESSION = "true" ]; then
ww -f org.qutebrowser.qutebrowser -c qutebrowser
exit
else
echo "other wayland"
# WAYLAND
qbrg=$(wlrctl window list | rg qutebrowser)
qbwin=$(echo $qbrg | sed 's/\(.*r\)\:.*/\1/')
# echo $ffwin
wlrctl toplevel focus "$qbwin"
exit
fi
fi
else
qutebrowser
fi