aboutsummaryrefslogtreecommitdiff
path: root/.config/eww/eww.yuck
blob: 4db3241afff3ee3c033bdcee440f3c6a5daf2b6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
(defwidget bar0 []
(box :class "bar"
  (centerbox :orientation "h"
    (workspaces0)
    (clock)
    (sidestuff)))
)

(defwidget bar1 []
(box :class "bar"
  (centerbox :orientation "h"
    (workspaces1)
    (clock)
    (sidestuff)))
)

(defwidget sidestuff []
  (box :class "sidestuff" :orientation "h" :space-evenly false :halign "end"
   (updates)
   (language)
   (idleinhibit)
   (bright)
   (audio)
   (net)
   (battery)
    ))

(deflisten workspace0
  "scripts/workspace.sh 0")

(defwidget workspaces0 []
  (literal :content workspace0))

(deflisten workspace1
  "scripts/workspace.sh 1")

(defwidget workspaces1 []
  (literal :content workspace1))

(defwidget language []
  (box :class "language"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "scripts/keyboardlayout.sh toggle"
        language)
))

(defwidget clock []
  (box :class "clock"
       :orientation "h"
       :space-evenly false
       :halign "center"
    (button
        :class ""
	:onclick "scripts/calendar.sh show"
        date-time)
    (label :unindent false :text " - ")
    (label :text time_poll)
))

(defwidget audio []
  (box :class "audio"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "scripts/volumecontrol down"
        :onmiddleclick "scripts/volumecontrol mute"
	:onrightclick "scripts/volumecontrol up"
        volume)
))

(defwidget bright []
  (box :class "brightness"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "scripts/brightnesscontrol down"
	:onrightclick "scripts/brightnesscontrol up"
        brightness)
))

(defwidget updates []
  (box 
       :class "${matches(chimera-updates, '^\s*$')?'apk-empty':'apk'}"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "foot bash -c 'doas apk upgrade; ~/.config/eww/scripts/chimera-updates.sh Refresh'&"
        chimera-updates)
))

(defwidget idleinhibit []
  (box :class "idle"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "scripts/idleinhibit.sh toggle"
        idle)
))

(defwidget net []
  (box :class "net"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
        :timeout 500
	:onclick "scripts/network.sh ShowInfo"
        network)
))

(defwidget battery []
  (box :class "battery"
       :orientation "h"
       :space-evenly false
       :halign "end"
       :spacing 10
    (button
        :class ""
	:onclick "scripts/battery.sh left-click"
        battery)
))

(defpoll time_poll :interval "1s" "date +%H:%M")

(defpoll battery :interval "10s"
  "scripts/battery.sh")

(defpoll language :interval "1s"
  "scripts/keyboardlayout.sh")

(defpoll network :interval "1s"
  "scripts/network.sh")

(defpoll idle :interval "1s"
  "scripts/idleinhibit.sh")

(defpoll chimera-updates :interval "600s"
  "scripts/chimera-updates.sh")

(defpoll volume :interval "1s"
  "scripts/volumecontrol")

(defpoll brightness :interval "1s"
  "scripts/brightnesscontrol")

(defpoll date-time :interval "1s"
  "scripts/date-time.sh")

(defwindow bar0
  :monitor 0
  :windowtype "dock"
  :geometry (geometry :x "0%"
                      :y "5px"
                      :width "100%"
                      :height "20px"
                      :anchor "top center")
  :stacking "fg"
  :exclusive true
  :focusable false
  (bar0))

(defwindow bar1
  :monitor 1
  :windowtype "dock"
  :geometry (geometry :x "0%"
                      :y "5px"
                      :width "100%"
                      :height "20px"
                      :anchor "top center")
  :stacking "fg"
  :exclusive true
  :focusable false
  (bar1))