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,16 +12,16 @@ if [ $(pgrep -c firefox) -gt 0 ]; then
# echo $emacsrg
if [ -z $ffrg ]; then
firefox
exec firefox
exit
else
wmctrl -ia $ffrg
exec wmctrl -ia $ffrg
exit
fi
else
if [ $KDE_FULL_SESSION = "true" ]; then
echo "KDE"
/home/chris/bin/ww -f firefox -c firefox
exec /home/chris/bin/ww -f firefox -c firefox
exit
else
# WAYLAND
@ -30,10 +30,10 @@ if [ $(pgrep -c firefox) -gt 0 ]; then
ffwin=$(echo $ffrg | sed 's/.*\: //')
# echo $ffwin
wlrctl toplevel focus title:"$ffwin"
exec wlrctl toplevel focus title:"$ffwin"
exit
fi
fi
else
firefox
exec firefox
fi