This commit is contained in:
2023-04-12 20:32:07 +02:00
parent 10fbbc2654
commit 5f49dad06a
85 changed files with 5097 additions and 4 deletions

20
home/gui/eww/scripts/powermode Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
icon() {
[ "$STATUS" = "no" ] && echo "󰌪" || echo "󱐋"
}
toggle() {
if [ "$STATUS" = "no" ]; then
echo ""
else
echo ""
fi
}
if [ "$1" = "toggle" ]; then
toggle
icon
else
icon
fi