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
|
{
"layer": "top",
"height": 27,
"spacing": 5,
"margin-top" :5,
"margin-right" :10,
"margin-left" :10,
"margin-bottom" :-5,
"modules-left": [
"dwl/tags",
"custom/layout",
],
"modules-center": ["custom/clock"],
"modules-right": [
"custom/keyboard-layout",
"idle_inhibitor",
],
"dwl/tags": {
"num-tags": 9,
"tag-labels": ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
},
"custom/layout": {
"format": "<span color='#202020' bgcolor='#d79921'> </span> {}",
"return-type": "json",
"exec": "~/.config/waybar/scripts/layout.sh",
"on-click": "~/.config/waybar/scripts/layout.sh toggle",
"interval" : 1,
"tooltip" : false
},
"custom/keyboard-layout": {
"format": "<span color='#202020' bgcolor='#98971a' > </span> {}",
"return-type": "text",
"interval": 1,
"exec": "mmsg -k | awk '{print toupper($3); exit}'",
"tooltip" : false
},
"idle_inhibitor": {
"format": "<span color='#202020' bgcolor='#458588' > {icon} </span>",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
"custom/clock": {
"format": "<span color='#202020' bgcolor='#689d6a' > </span> {}",
"return-type": "json",
"interval": 1,
"exec": "~/.config/waybar/scripts/date-time.sh",
"on-click": "~/.config/waybar/scripts/calendar.sh show"
},
}
|