feat: make tablet toggle a button that actually changes when clicked

This commit is contained in:
matt1432 2023-06-03 23:10:30 -04:00
parent 553f58e5bb
commit 22ab0ff667
7 changed files with 12 additions and 4 deletions

View file

@ -7,3 +7,4 @@
@import "actions/actions.scss";
@import "powermenu/powermenu.scss";
@import "dashboard/dashboard.scss";
@import "traybuttons/traybuttons.scss";

View file

@ -4,3 +4,4 @@
(include "powermenu/powermenu.yuck")
(include "dashboard/dashboard.yuck")
(include "closer/closer.yuck")
(include "traybuttons/traybuttons.yuck")

View file

@ -10,8 +10,10 @@ do
array[i]=${array[i]%-reveal}
done
# Print the elements of the array
# Close every window except permanent ones
for element in "${array[@]}"
do
$HOME/.config/eww/scripts/close.sh "$element"
if [[ "$element" != "tablet-toggle" ]]; then
$HOME/.config/eww/scripts/close.sh "$element"
fi
done

View file

@ -43,4 +43,4 @@
(defpoll cpu :interval "3s" "~/.config/eww/scripts/cpu.sh")
(defpoll ram :interval "3s" "~/.config/eww/scripts/ram.sh ram")
(defpoll temp :interval "3s" "~/.config/eww/scripts/temp.sh get")
(defpoll disk :interval "3s" "~/.config/eww/scripts/disk.sh")
(defpoll disk :interval "3s" "~/.config/eww/scripts/disk.sh")