mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-12-26 13:14:35 +00:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
(deflisten temperature `scripts/gammarelay temperature watch`)
|
||
(deflisten brightness `scripts/gammarelay brightness watch`)
|
||
; (deflisten gamma `scripts/gammarelay gamma watch`)
|
||
|
||
(defwidget gammarelay_module []
|
||
(box
|
||
:class "module gammarelay"
|
||
|
||
(eventbox
|
||
:onscroll "scripts/gammarelay temperature scroll {}"
|
||
:onclick "scripts/gammarelay temperature set toggle"
|
||
:onrightclick "scripts/gammarelay temperature set off"
|
||
:tooltip "${temperature} K"
|
||
:class "temperature"
|
||
(box
|
||
(label
|
||
:class "icon"
|
||
:text "")
|
||
))
|
||
|
||
(eventbox
|
||
:onscroll "scripts/gammarelay brightness scroll {}"
|
||
:onclick "scripts/gammarelay brightness set toggle"
|
||
:onrightclick "scripts/gammarelay brightness set off"
|
||
:tooltip "${brightness}%"
|
||
:class "brightness"
|
||
(box
|
||
(label
|
||
:class "icon"
|
||
:text "")
|
||
))
|
||
|
||
; (eventbox
|
||
; :onscroll "scripts/gammarelay gamma scroll {}"
|
||
; :onclick "scripts/gammarelay gamma set toggle"
|
||
; :onrightclick "scripts/gammarelay gamma set off"
|
||
; :tooltip "${gamma}%"
|
||
; :class "gamma"
|
||
; :valign "top"
|
||
; (box
|
||
; (label
|
||
; :class "icon"
|
||
; :text "γ")
|
||
; ))
|
||
))
|