changed visualizer font size, moved resource monitor to second monitor

This commit is contained in:
2026-06-06 14:17:41 -05:00
parent f64b88eb68
commit 4d4a82de65
2 changed files with 6 additions and 4 deletions

View File

@@ -134,6 +134,8 @@ circular-progress {
} }
.visualizer { .visualizer {
font-size: 15px; font-size: 10px;
text-shadow: 0px 0px; text-shadow: 0px 0px;
padding: 0px;
margin: 0px;
} }

View File

@@ -23,7 +23,7 @@
(defvar reveal_calendar false) (defvar reveal_calendar false)
(defvar reveal_sound false) (defvar reveal_sound false)
(defvar reveal_sound_menu false) (defvar reveal_sound_menu false)
(defvar network_interface "enp0s3") ;;the interface to listen to (defvar network_interface "enp5s0") ;;the interface to listen to
(defvar reveal_apps 0) (defvar reveal_apps 0)
(defvar browser "microsoft-edge-stable") (defvar browser "microsoft-edge-stable")
(defvar filemanager "dolphin") (defvar filemanager "dolphin")
@@ -198,7 +198,7 @@
;;second monitor can have cpu and ram usage, cpu temp, time ;;second monitor can have cpu and ram usage, cpu temp, time
(defwindow resource_monitor [] (defwindow resource_monitor []
:monitor 0 :monitor 1
:geometry (geometry :geometry (geometry
:y "5%" :y "5%"
:x "5%" :x "5%"
@@ -252,7 +252,7 @@
:class "monitor" :class "monitor"
:orientation "v" :orientation "v"
:space-evenly true :space-evenly true
(label :text "cpu temp: ${EWW_TEMPS.K10TEMP_TCTL} C") (label :text "cpu temp: ${round(EWW_TEMPS.K10TEMP_TCTL, 1)} C")
(label :text "gpu temp: ${EWW_TEMPS.AMDGPU_JUNCTION} C") (label :text "gpu temp: ${EWW_TEMPS.AMDGPU_JUNCTION} C")
)) ))