ehhhhhhhhh

This commit is contained in:
Chris Cochrun 2023-04-25 15:00:36 -05:00
parent dde40c5adf
commit 57140f0420
6 changed files with 14 additions and 26 deletions

View file

@ -5,25 +5,12 @@ windows=($string)
for i in "${windows[@]}"
do
echo $i
if [ $(hostname) = "syl" ]; then
if [[ $i = '*bar0' ]]; then
eww close bar0
return
else
eww open bar0
fi
else
if [[ $i = '*bar1' ]]; then
eww close bar1
return
else
eww open bar1
fi
if [[ $i = '*bar0' ]]; then
eww close bar0
return
else
eww open bar0
fi
done