2023-07-23 22:58:28 -04:00
|
|
|
(defvar showqs false)
|
|
|
|
|
2023-07-23 22:30:05 -04:00
|
|
|
(defwidget quick-settings-smol []
|
|
|
|
(box :class "quick-settings-smol"
|
|
|
|
:orientation "h"
|
|
|
|
(label :text " ")
|
|
|
|
)
|
|
|
|
)
|
2023-07-27 23:07:22 -04:00
|
|
|
(defwindow quick-settings-smol-reveal
|
2023-07-23 22:30:05 -04:00
|
|
|
:monitor 0
|
|
|
|
:stacking "overlay"
|
|
|
|
:exclusive "ignore"
|
|
|
|
:geometry (geometry :x "5px"
|
|
|
|
:y "10px"
|
|
|
|
:width "0px"
|
|
|
|
:height "0px"
|
|
|
|
:anchor "top right"
|
|
|
|
)
|
2023-07-23 22:58:28 -04:00
|
|
|
(revealer
|
|
|
|
:transition "crossfade"
|
|
|
|
:reveal showqs
|
|
|
|
:duration "550ms"
|
|
|
|
(quick-settings-smol)
|
|
|
|
)
|
2023-07-23 22:30:05 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
(defwidget quick-settings-logo []
|
|
|
|
(eventbox :class "quick-settings-logo"
|
2023-07-27 23:07:22 -04:00
|
|
|
:onclick "$EWW_PATH/qs-toggle.sh off"
|
2023-07-23 22:30:05 -04:00
|
|
|
:cursor "pointer"
|
|
|
|
|
|
|
|
(box :class "quick-settings-logo"
|
|
|
|
:orientation "h"
|
|
|
|
(label :text " ")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2023-07-27 23:07:22 -04:00
|
|
|
(defwindow quick-settings-logo-reveal
|
2023-07-23 22:30:05 -04:00
|
|
|
:monitor 0
|
|
|
|
:stacking "overlay"
|
|
|
|
:exclusive "ignore"
|
|
|
|
:geometry (geometry :x "5px"
|
|
|
|
:y "10px"
|
|
|
|
:width "0px"
|
|
|
|
:height "0px"
|
|
|
|
:anchor "top right"
|
|
|
|
)
|
2023-07-23 22:58:28 -04:00
|
|
|
(revealer
|
|
|
|
:transition "crossfade"
|
|
|
|
:reveal showqs
|
|
|
|
:duration "550ms"
|
|
|
|
(quick-settings-logo)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(defwidget quick-settings []
|
2023-07-29 00:32:42 -04:00
|
|
|
(box :class "quick-settings"
|
|
|
|
:orientation "v"
|
|
|
|
:space-evenly false
|
|
|
|
(label :text "Control Center"
|
|
|
|
:class "title"
|
|
|
|
:xalign 0.04
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Button Grid
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "button-grid"
|
|
|
|
:orientation "v"
|
|
|
|
:valign "start"
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:halign "center"
|
|
|
|
:space-evenly true
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Row ONE
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "button-row"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly true
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:halign "center"
|
2023-07-30 19:13:59 -04:00
|
|
|
:style "margin-top: 15px;
|
|
|
|
margin-bottom: 7px"
|
2023-07-29 00:32:42 -04:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "rfkill toggle wlan"
|
2023-07-29 00:32:42 -04:00
|
|
|
|
|
|
|
(label :text " "
|
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 19:13:59 -04:00
|
|
|
:onclick "nm-connection-editor &"
|
|
|
|
|
2023-07-29 00:32:42 -04:00
|
|
|
(label :text " " :class "grid-chev")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "rfkill toggle bluetooth"
|
|
|
|
|
2023-07-30 19:13:59 -04:00
|
|
|
(label :text " "
|
2023-07-29 00:32:42 -04:00
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "blueberry &"
|
|
|
|
|
2023-07-29 00:32:42 -04:00
|
|
|
(label :text " " :class "grid-chev")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "notify-send 'set this up moron'"
|
|
|
|
|
2023-07-30 19:13:59 -04:00
|
|
|
(label :text " "
|
2023-07-29 00:32:42 -04:00
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "notify-send 'set this up moron'"
|
|
|
|
|
|
|
|
(label :text " "
|
|
|
|
:class "grid-chev"
|
|
|
|
)
|
2023-07-29 00:32:42 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Row TWO
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "button-row"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly true
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:halign "center"
|
2023-07-30 19:13:59 -04:00
|
|
|
:style "margin-top: 7px;
|
|
|
|
margin-bottom: 15px;"
|
2023-07-29 00:32:42 -04:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "swayosd --output-volume mute-toggle"
|
|
|
|
|
|
|
|
(label :text " ${volume_icon} "
|
2023-07-29 00:32:42 -04:00
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "pavucontrol &"
|
|
|
|
|
2023-07-29 00:32:42 -04:00
|
|
|
(label :text " " :class "grid-chev")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "swayosd --input-volume mute-toggle"
|
|
|
|
|
2023-07-30 19:13:59 -04:00
|
|
|
(label :text " "
|
2023-07-29 00:32:42 -04:00
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "pavucontrol &"
|
|
|
|
|
2023-07-29 00:32:42 -04:00
|
|
|
(label :text " " :class "grid-chev")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(box :class "grid-button"
|
|
|
|
:orientation "h"
|
|
|
|
:space-evenly false
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
|
|
|
|
(eventbox :class "left-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "notify-send 'set this up moron'"
|
|
|
|
|
2023-07-30 19:13:59 -04:00
|
|
|
(label :text " "
|
2023-07-29 00:32:42 -04:00
|
|
|
:class "grid-label"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(eventbox :class "right-part"
|
|
|
|
:cursor "pointer"
|
2023-07-30 22:15:44 -04:00
|
|
|
:onclick "notify-send 'set this up moron'"
|
|
|
|
|
2023-07-29 00:32:42 -04:00
|
|
|
(label :text " " :class "grid-chev")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2023-07-30 19:13:59 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
(box :class "slider-box"
|
|
|
|
:orientation "v"
|
|
|
|
:space-evenly true
|
|
|
|
:spacing 0
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:halign "center"
|
2023-07-29 00:32:42 -04:00
|
|
|
|
2023-07-30 19:13:59 -04:00
|
|
|
(box :class "slider"
|
|
|
|
:orientation "h"
|
|
|
|
:valign "start"
|
|
|
|
:halign "center"
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:space-evenly false
|
|
|
|
|
2023-07-30 22:15:44 -04:00
|
|
|
(label :text "${volume_icon}" :class "slider-label")
|
2023-07-30 19:13:59 -04:00
|
|
|
|
2023-07-30 22:15:44 -04:00
|
|
|
(scale :value volume_value
|
|
|
|
:onchange "$EWW_PATH/volume.sh set {}"
|
2023-07-30 19:13:59 -04:00
|
|
|
:min 0
|
|
|
|
:max 101
|
|
|
|
:height 0
|
|
|
|
:width 0
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(box :class "slider"
|
|
|
|
:orientation "h"
|
|
|
|
:valign "start"
|
|
|
|
:halign "center"
|
|
|
|
:width 0
|
|
|
|
:height 0
|
|
|
|
:space-evenly false
|
|
|
|
|
2023-07-30 22:15:44 -04:00
|
|
|
(label :text " ${br_icon} " :class "slider-label" :style "margin-left: 6px;
|
|
|
|
margin-right: -6px")
|
2023-07-30 19:13:59 -04:00
|
|
|
|
2023-07-30 22:15:44 -04:00
|
|
|
(scale :value br
|
|
|
|
:onchange "$EWW_PATH/brightness.sh set {}"
|
2023-07-30 19:13:59 -04:00
|
|
|
:min 0
|
|
|
|
:max 101
|
|
|
|
:height 0
|
|
|
|
:width 0
|
2023-07-29 00:32:42 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2023-07-30 22:15:44 -04:00
|
|
|
|
2023-07-23 22:58:28 -04:00
|
|
|
)
|
|
|
|
)
|
2023-07-27 23:07:22 -04:00
|
|
|
(defwindow quick-settings-reveal
|
2023-07-23 22:58:28 -04:00
|
|
|
:monitor 0
|
|
|
|
:stacking "overlay"
|
|
|
|
:geometry (geometry :x "5px"
|
|
|
|
:y "7px"
|
|
|
|
:width "0px"
|
|
|
|
:height "0px"
|
|
|
|
:anchor "top right"
|
|
|
|
)
|
|
|
|
(revealer
|
|
|
|
:transition "crossfade"
|
|
|
|
:reveal showqs
|
|
|
|
:duration "550ms"
|
|
|
|
(quick-settings)
|
|
|
|
)
|
2023-07-23 22:30:05 -04:00
|
|
|
)
|