dotfiles/scripts/qblof
2022-05-06 11:39:51 -05:00

40 lines
881 B
Bash
Executable file

#!/bin/sh
# Check to see if qb is running
if [ $(pgrep -c qutebrowser) -gt 0 ]; 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
/home/chris/scripts/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