31 lines
615 B
Bash
Executable file
31 lines
615 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check to see if firefox is running
|
|
if [ $(pgrep -c qutebrowser) -gt 0 ]; then
|
|
|
|
if [ $XDG_SESSION_TYPE = "x11" ]; then
|
|
#X11
|
|
qbrg=$(wmctrl -lx | rg qutebrowser | awk '{print $1}')
|
|
# echo $emacsrg
|
|
|
|
if [ -z $qbrg ]; then
|
|
qutebrowser
|
|
exit
|
|
else
|
|
wmctrl -ia $qbrg
|
|
exit
|
|
fi
|
|
else
|
|
# WAYLAND
|
|
qbrg=$(wlrctl window list | rg qutebrowser)
|
|
|
|
qbwin=$(echo $qbrg | sed 's/.*\: //')
|
|
# echo $ffwin
|
|
|
|
wlrctl toplevel focus title:"$qbwin"
|
|
exit
|
|
fi
|
|
else
|
|
qutebrowser
|
|
fi
|