mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-06-04 02:13:42 +02:00
refactor: eww design token
This commit is contained in:
parent
b8d0c9e719
commit
f3830fc2db
9 changed files with 47 additions and 32 deletions
|
@ -8,12 +8,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.separator {
|
.separator {
|
||||||
padding: 6px;
|
padding: 4px 6px;
|
||||||
|
|
||||||
.dot {
|
.dot {
|
||||||
padding: 2px;
|
padding: 3px;
|
||||||
|
|
||||||
border-radius: 100;
|
border-radius: 100%;
|
||||||
|
|
||||||
background-color: $white;
|
background-color: $white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
@import "tokens";
|
@import "tokens";
|
||||||
|
|
||||||
|
.animation {
|
||||||
|
transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||||
|
}
|
||||||
|
|
||||||
.widget {
|
.widget {
|
||||||
padding: get-token(padding, small);
|
padding: get-token(padding, small);
|
||||||
margin: get-token(margin, small);
|
margin: get-token(margin, small);
|
||||||
|
|
|
@ -17,7 +17,7 @@ $design-tokens: (
|
||||||
border-radius: (
|
border-radius: (
|
||||||
small: 6px,
|
small: 6px,
|
||||||
default: 8px,
|
default: 8px,
|
||||||
large: 12px,
|
large: 16px,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -26,22 +26,32 @@
|
||||||
(box :class "reveal-on-hover" (children :nth 0))))
|
(box :class "reveal-on-hover" (children :nth 0))))
|
||||||
))
|
))
|
||||||
|
|
||||||
(defwidget RevealOnClick [var varname ?class ?duration ?transition ?direction]
|
(defwidget RevealOnClick [var varname direction ?class ?duration ?transition]
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:class "widget"
|
:class "widget"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
|
||||||
|
(eventbox
|
||||||
|
:cursor "pointer"
|
||||||
|
:visible {direction == "up"}
|
||||||
|
:onclick `${EWW_CMD} update ${varname}=${!var}`
|
||||||
|
|
||||||
|
(label :angle {direction == "up" ? (var ? 270 : 90) : (var ? 90 : 270)} :class "reveal-on-click" :tooltip "touch control" :text ""))
|
||||||
|
|
||||||
(revealer
|
(revealer
|
||||||
:reveal var
|
:reveal var
|
||||||
:transition "slideup"
|
:transition {direction == "up" ? "slideup" : "slidedown"}
|
||||||
:duration animation-duration-fast
|
:duration animation-duration-fast
|
||||||
|
|
||||||
(box (children :nth 0)))
|
(box :style "padding: 6px 0px" (children :nth 0)))
|
||||||
|
|
||||||
|
|
||||||
(eventbox
|
(eventbox
|
||||||
:cursor "pointer"
|
:cursor "pointer"
|
||||||
|
:visible {direction == "down"}
|
||||||
:onclick `${EWW_CMD} update ${varname}=${!var}`
|
:onclick `${EWW_CMD} update ${varname}=${!var}`
|
||||||
|
|
||||||
(label :angle {var ? 90 : 270} :class "reveal-on-click" :tooltip "touch control" :text ""))
|
(label :angle {direction == "up" ? (var ? 270 : 90) : (var ? 90 : 270)} :class "reveal-on-click" :tooltip "touch control" :text ""))
|
||||||
|
|
||||||
))
|
))
|
||||||
|
|
|
@ -3,13 +3,14 @@
|
||||||
:cursor "pointer"
|
:cursor "pointer"
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:class "widget"
|
:class "widget player-ctl"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:spacing spacing-default
|
:spacing spacing-default
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
|
||||||
(eventbox
|
(eventbox
|
||||||
:onclick "${EWW_CMD} open MusicPlayerPopup --toggle"
|
:onclick "${EWW_CMD} open MusicPlayerPopup --toggle"
|
||||||
|
:visible cover
|
||||||
(image :path { pcover == "" ? "./assets/image/emptympd.png" : pcover } :image-width 20 :image-height 20))
|
(image :path { pcover == "" ? "./assets/image/emptympd.png" : pcover } :image-width 20 :image-height 20))
|
||||||
|
|
||||||
(button :onclick "playerctl previous"
|
(button :onclick "playerctl previous"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
(systray
|
(systray
|
||||||
:orientation orientation
|
:orientation orientation
|
||||||
:icon-size 18
|
:icon-size 20
|
||||||
:spacing spacing-default
|
:spacing spacing-default
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -10,14 +10,14 @@
|
||||||
(chooser)
|
(chooser)
|
||||||
; (weather)
|
; (weather)
|
||||||
|
|
||||||
; (coolmpd :h 150 :permashow true)
|
(coolmpd :h 160 :permashow true)
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
:height 180
|
:height 180
|
||||||
:halign "fill"
|
|
||||||
(timer)
|
(Timer)
|
||||||
(bigslides))
|
(bigslides))
|
||||||
|
|
||||||
(box
|
(box
|
||||||
|
@ -25,11 +25,12 @@
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:vexpand true
|
:vexpand true
|
||||||
:visible true
|
:visible true
|
||||||
(toolbox)
|
|
||||||
(notifications_weather_box))
|
(Toolbox)
|
||||||
|
(NotificationsWeatherBox))
|
||||||
))
|
))
|
||||||
|
|
||||||
(defwidget toolbox []
|
(defwidget Toolbox []
|
||||||
(eventbox
|
(eventbox
|
||||||
:cursor "pointer"
|
:cursor "pointer"
|
||||||
|
|
||||||
|
@ -44,10 +45,10 @@
|
||||||
(defwidget chooser []
|
(defwidget chooser []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:halign "fill"
|
|
||||||
:height 60
|
:height 60
|
||||||
:class "panel-widget"
|
:class "panel-widget"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
|
|
||||||
|
@ -223,7 +224,7 @@
|
||||||
(label :halign "start" :text "${datehour < 12 ? 'Good morning' : datehour < 18 ? 'Good afternoon' : datehour < 22 ? 'Good evening' : 'Good night'} ${hostname}")
|
(label :halign "start" :text "${datehour < 12 ? 'Good morning' : datehour < 18 ? 'Good afternoon' : datehour < 22 ? 'Good evening' : 'Good night'} ${hostname}")
|
||||||
(label :halign "start" :text uptime :style "font-size: 12px;"))))))
|
(label :halign "start" :text uptime :style "font-size: 12px;"))))))
|
||||||
|
|
||||||
(defwidget notifications_weather_box []
|
(defwidget NotificationsWeatherBox []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:halign "fill"
|
:halign "fill"
|
||||||
|
@ -339,13 +340,14 @@
|
||||||
;; (label :halign "start" :text "${weatherjson.precipMM} mm")
|
;; (label :halign "start" :text "${weatherjson.precipMM} mm")
|
||||||
))))
|
))))
|
||||||
|
|
||||||
(defwidget timer[]
|
(defwidget Timer []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:class "panel-widget"
|
:class "panel-widget"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
:width 180
|
|
||||||
:valign "fill"
|
:valign "fill"
|
||||||
|
:width 200
|
||||||
|
|
||||||
(label :class "timer" :valign "center" :vexpand true :text timerdis)
|
(label :class "timer" :valign "center" :vexpand true :text timerdis)
|
||||||
(box
|
(box
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
|
@ -369,7 +371,6 @@
|
||||||
(defwidget bigvol []
|
(defwidget bigvol []
|
||||||
(overlay
|
(overlay
|
||||||
(scale
|
(scale
|
||||||
:width 50
|
|
||||||
:class "bigslide"
|
:class "bigslide"
|
||||||
:value volume
|
:value volume
|
||||||
:onchange "pactl set-sink-volume @DEFAULT_SINK@ {}%"
|
:onchange "pactl set-sink-volume @DEFAULT_SINK@ {}%"
|
||||||
|
@ -386,7 +387,6 @@
|
||||||
(defwidget bigmic []
|
(defwidget bigmic []
|
||||||
(overlay
|
(overlay
|
||||||
(scale
|
(scale
|
||||||
:width 50
|
|
||||||
:class "bigslide"
|
:class "bigslide"
|
||||||
:value mic_volume
|
:value mic_volume
|
||||||
:onchange "pactl set-source-volume @DEFAULT_SOURCE@ {}%"
|
:onchange "pactl set-source-volume @DEFAULT_SOURCE@ {}%"
|
||||||
|
@ -403,7 +403,6 @@
|
||||||
(defwidget bigbright []
|
(defwidget bigbright []
|
||||||
(overlay
|
(overlay
|
||||||
(scale
|
(scale
|
||||||
:width 50
|
|
||||||
:class "bigslide"
|
:class "bigslide"
|
||||||
:value brightness
|
:value brightness
|
||||||
:onchange "brightnessctl set {}%"
|
:onchange "brightnessctl set {}%"
|
||||||
|
|
|
@ -14,12 +14,12 @@
|
||||||
(centerbox
|
(centerbox
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
|
|
||||||
(Top)
|
(BarTop)
|
||||||
(Middle)
|
(BarMiddle)
|
||||||
(Bottom)
|
(BarBottom)
|
||||||
)))
|
)))
|
||||||
|
|
||||||
(defwidget Top []
|
(defwidget BarTop []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
(Shortcuts)
|
(Shortcuts)
|
||||||
))
|
))
|
||||||
|
|
||||||
(defwidget Middle []
|
(defwidget BarMiddle []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
@ -42,10 +42,10 @@
|
||||||
|
|
||||||
(Separator :orientation "h" :dots "[1, 2, 3]" :visible true)
|
(Separator :orientation "h" :dots "[1, 2, 3]" :visible true)
|
||||||
|
|
||||||
(PlayerCtl)
|
(PlayerCtl :cover false)
|
||||||
))
|
))
|
||||||
|
|
||||||
(defwidget Bottom []
|
(defwidget BarBottom []
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
@ -54,6 +54,7 @@
|
||||||
(RevealOnClick
|
(RevealOnClick
|
||||||
:var revealSystray
|
:var revealSystray
|
||||||
:varname "revealSystray"
|
:varname "revealSystray"
|
||||||
|
:direction "up"
|
||||||
(Systemtray :orientation "v")
|
(Systemtray :orientation "v")
|
||||||
)
|
)
|
||||||
;; (Language)
|
;; (Language)
|
||||||
|
@ -65,9 +66,9 @@
|
||||||
(RevealOnClick
|
(RevealOnClick
|
||||||
:var revealShortcuts
|
:var revealShortcuts
|
||||||
:varname "revealShortcuts"
|
:varname "revealShortcuts"
|
||||||
|
:direction "down"
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:class "touch"
|
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:spacing spacing-default
|
:spacing spacing-default
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue