This commit is contained in:
2025-10-11 19:10:48 +05:00
commit d0401c8c07
27 changed files with 1240 additions and 0 deletions

22
home/desktop/eww_config/show.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
file_bar="/home/fox/.cache/bar_opened"
file_power="/home/fox/.cache/power_opened"
case $1 in
bar)
if [[ ! -f "$file_bar" ]] then
touch $file_bar
eww open bar
else
rm $file_bar
eww close bar
fi ;;
power)
if [[ ! -f "$file_power" ]] then
touch $file_power
eww open power
else
rm $file_power
eww close power
fi ;;
esac