add configs i forgot the credits fo

This commit is contained in:
matt1432 2023-05-28 19:23:05 -04:00
parent 78b3b3ffd8
commit 7326392a88
7 changed files with 295 additions and 0 deletions

0
waybar/scripts/.heart Normal file
View file

8
waybar/scripts/heart.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
TOGGLE=$HOME/.config/waybar/scripts/.heart
if [ ! -e $TOGGLE ]; then
echo " 󰣐 "
else
echo "  "
fi

8
waybar/scripts/toggle-heart.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
TOGGLE=$HOME/.config/waybar/scripts/.heart
if [ ! -e $TOGGLE ]; then
touch $TOGGLE
else
rm $TOGGLE
fi