refactor(eww): some slight cleaning up
This commit is contained in:
parent
3f3ce37c7f
commit
a1411e1371
2 changed files with 15 additions and 15 deletions
|
@ -23,7 +23,7 @@
|
|||
|
||||
(defwidget heart-toggle []
|
||||
(eventbox :class {heart_icon == "" ? "toggle-on" : "toggle-off"}
|
||||
:onclick "$EWW_PATH/heart.sh toggle"
|
||||
:onclick "$EWW_PATH/heart.sh"
|
||||
(box :class "heart-toggle"
|
||||
:orientation "h"
|
||||
(label :text " ${heart_icon} ")
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
(deflisten notif_icon "$EWW_PATH/notif.sh icon")
|
||||
(deflisten heart_icon "tail -f $HOME/.config/.heart")
|
||||
|
||||
(defpoll volume_icon :interval "1s" "$EWW_PATH/volume.sh icon")
|
||||
(defpoll volume :interval "1s" "$EWW_PATH/volume.sh percentage")
|
||||
(defpoll volume_value :interval "1s" "$EWW_PATH/volume.sh vol")
|
||||
(defpoll is_muted :interval "1s" "$EWW_PATH/volume.sh muted")
|
||||
(defpoll volume_icon :interval "1s" "$EWW_PATH/volume.sh icon")
|
||||
(defpoll volume :interval "1s" "$EWW_PATH/volume.sh percentage")
|
||||
(defpoll volume_value :interval "1s" "$EWW_PATH/volume.sh vol")
|
||||
(defpoll is_muted :interval "1s" "$EWW_PATH/volume.sh muted")
|
||||
|
||||
(defpoll br_icon :interval "1s" "$EWW_PATH/brightness.sh icon")
|
||||
(defpoll br :interval "1s" "$EWW_PATH/brightness.sh br")
|
||||
(defpoll br_icon :interval "1s" "$EWW_PATH/brightness.sh icon")
|
||||
(defpoll br :interval "1s" "$EWW_PATH/brightness.sh br")
|
||||
|
||||
(defpoll completeday :interval "1h" "date '+%A, %d %B'")
|
||||
(defpoll lithour :interval "30m" "date +%H")
|
||||
(defpoll litmin :interval "30s" "date +%M")
|
||||
(defpoll calendar_day :interval "10h" "date '+%d'")
|
||||
(defpoll completeday :interval "1h" "date '+%A, %d %B'")
|
||||
(defpoll lithour :interval "30m" "date +%H")
|
||||
(defpoll litmin :interval "30s" "date +%M")
|
||||
(defpoll calendar_day :interval "10h" "date '+%d'")
|
||||
(defpoll calendar_month :interval "10h" "date '+%m")
|
||||
(defpoll calendar_year :interval "10h" "date '+%Y'")
|
||||
(defpoll date :interval "30s" "date '+%d %b, %I:%M %p'")
|
||||
(defpoll shortday :interval "1h" "date '+%d %b %y'")
|
||||
(defpoll weekday :interval "24h" "date +%A")
|
||||
(defpoll calendar_year :interval "10h" "date '+%Y'")
|
||||
(defpoll date :interval "30s" "date '+%d %b, %I:%M %p'")
|
||||
(defpoll shortday :interval "1h" "date '+%d %b %y'")
|
||||
(defpoll weekday :interval "24h" "date +%A")
|
||||
|
|
Loading…
Reference in a new issue