updating EVERYTHING for arch again

This commit is contained in:
Chris Cochrun 2022-06-23 12:17:54 -05:00
parent 270b92d0c2
commit d0ef589a39
20 changed files with 120 additions and 74 deletions

View file

@ -12,15 +12,15 @@ if [ $(pgrep -c qutebrowser) -gt 0 ]; then
# echo $emacsrg
if [ -z $qbrg ]; then
qutebrowser
exec qutebrowser
exit
else
wmctrl -ia $qbrg
exec wmctrl -ia $qbrg
exit
fi
else
if [ $KDE_FULL_SESSION = "true" ]; then
/home/chris/bin/ww -f org.qutebrowser.qutebrowser -c qutebrowser
exec /home/chris/bin/ww -f org.qutebrowser.qutebrowser -c qutebrowser
exit
else
echo "other wayland"
@ -30,10 +30,10 @@ if [ $(pgrep -c qutebrowser) -gt 0 ]; then
qbwin=$(echo $qbrg | sed 's/\(.*r\)\:.*/\1/')
# echo $ffwin
wlrctl toplevel focus "$qbwin"
exec wlrctl toplevel focus "$qbwin"
exit
fi
fi
else
qutebrowser
exec qutebrowser
fi