aboutsummaryrefslogtreecommitdiff
path: root/dot-config/yambar/config.yml
blob: e7bdb3a179de0546139bc954ed087265a04b9bd9 (plain)
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#
# YAMBAR CONFIG
#

# VARIABLES
define:
  # Colours
  - &bg 00000000
  - &fg ffffffff
  - &fgdim ffffff88

  - &red f38ba8ff
  - &green 90ee90ff
  - &blue 89b4faff
  - &purple cba6f7ff
  - &yellow f1c40fff
  - &teal 00ddccff
  - &magenta ff4578ff

  - &RED ff0000ff
  - &YLW ffff00ff
  - &GRN 00ff00ff

  # Settings
  - &font 'hack-nerd:size=24:weight=bold'
  - &margin 20
  - &height 50
  - &line 2

  # Actions
  - &select-workspace "swaymsg workspace number {name}"
  - &calendar footclient -T calendar pgrep calcurse || calcurse
  - &audiomixer footclient -T audiomixer pgrep pulsemixer || pulsemixer
  - &network-control iwd-control.sh
  - &volume-up volume up 1%
  - &volume-down volume down 1%
  - &brightness-up brightnessctl set +1%
  - &brightness-down brightnessctl --min-value=10 set 1-%
  - &pacman-notify ~/.config/yambar/scripts/pacman-notify
  - &pacman-update footclient -T update sudo pacman -Syyu && >~/.cache/updates

# MODULES
battery: &battery
  name: BAT0
  poll-interval: 1000
  anchors:
    battery-anchor: &battery-anchor
      margin: *margin
      deco:
        stack:
          - {underline: {size: *line, color: *teal}}
          - {background: {color: *bg}}
  content:
    map:
      conditions:
        ~(state == "unknown"):
          map:
            default: {string: {text: "{state}"}}
            conditions:
              state == "discharging":
              - ramp:
                 tag: capacity
                 items:
                   - string: {text: "({estimate}) {capacity}% ", foreground: *RED, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *yellow, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *teal, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *teal, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *teal, <<: *battery-anchor}
              state == "charging":
              - ramp:
                 tag: capacity
                 items:
                   - string: {text: "({estimate}) {capacity}% ", foreground: *RED, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *YLW, <<: *battery-anchor}
                   - string: {text: "({estimate}) {capacity}% ", foreground: *GRN, <<: *battery-anchor}
              state == "full":
                - string: {text: "{capacity}% ", foreground: *green, <<: *battery-anchor}

pipewire: &pipewire
  anchors:
    volume-anchor: &volume-anchor
      foreground: *yellow
      margin: *margin
      deco:
        stack:
        - {underline: {size: *line, color: *yellow}}
        - {background: {color: *bg}}
      on-click:
        left: *audiomixer
        wheel-up: *volume-up
        wheel-down: *volume-down
  content:
    map:
      conditions:
        type == "sink":
          map:
            default:
             - ramp:
                tag: cubic_volume
                items:
                  - string: {text: "{cubic_volume}% ", <<: *volume-anchor}
                  - string: {text: "{cubic_volume}% ", <<: *volume-anchor}
                  - string: {text: "{cubic_volume}% ", <<: *volume-anchor}
            conditions:
             muted:
                string:
                  text: "mute "
                  foreground: *red
                  margin: *margin
                  deco:
                    stack:
                     - {underline: {size: *line, color: *red}}
                     - {background: {color: *bg}}
                  on-click: *audiomixer

network: &network
  anchors:
    network-anchor: &network-anchor
      text: "{ssid} "
      margin: *margin
      deco:
        stack:
        - {underline: {size: *line, color: *green}}
        - {background: {color: *bg}}
  content:
    map:
      conditions:
        name == "wlan0":
          map:
            default:
              string: {text: "{ssid} ({state}) "}
            conditions:
              state == "up":
                string: {foreground: *green, <<: *network-anchor}
              state == "down":
                string: {text: "Offline ", <<: *network-anchor,  foreground: *red}
            on-click: *network-control

clock: &clock
  time-format: "%R"
  content:
    string:
      text: "{time} "
      foreground: *blue
      margin: *margin
      deco:
        stack:
          - {underline: {size: *line, color: *blue}}
          - {background: {color: *bg}}

date: &date
  date-format: "%F"
  content:
    string:
      text: "{date} "
      foreground: *purple
      margin: *margin
      deco:
        stack:
          - {underline: {size: *line, color: *purple}}
          - {background: {color: *bg}}
      on-click: *calendar

workspace: &workspace
  sort: ascending
  spacing: 5
  content:
    "":
      map:
        default:
          string:
            text: "{name}"
            foreground: *fgdim
            margin: *margin
            on-click: *select-workspace
        conditions:
          name == "0": {string: {text: ""}}
          state == "focused":
            string:
              text: "{name}"
              foreground: *fg
              margin: *margin
              deco:
                stack:
                  - {underline: {size: *line, color: *fg}}
                  - {background: {color: *bg}}
          state == "urgent":
            string:
              text: "{name}"
              foreground: *red
              margin: *margin

backlight: &backlight
# note: name is found in '/sys/class/backlight'
  name: intel_backlight
  content:
    string:
      text: "{percent}% "
      margin: *margin
      foreground: *fg
      deco:
        stack:
          - {underline: {size: *line, color: *fg}}
          - {background: {color: *bg}}
      on-click:
        wheel-up: *brightness-up
        wheel-down: *brightness-down

pacman: &pacman
  path: ~/.config/yambar/scripts/pacman-label
  args: []
  content:
    string:
      text: "{count} "
      foreground: *red
      margin: *margin
      deco:
        stack:
          - {underline: {size: *line, color: *red}}
          - {background: {color: *bg}}
      on-click:
        left: *pacman-notify
        right: *pacman-update

# LAYOUT
bar:
  location: top
  foreground: *fg
  background: *bg
  margin: *margin
  font: *font
  spacing: 10
  height: 49

  left:
   - i3: *workspace

  right:
   - script: *pacman
   - network: *network
   - backlight: *backlight
   - battery: *battery
   - pipewire: *pipewire
   - clock: *date
   - clock: *clock