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
|
{
"river/layout": {
"format": " <tt>{}</tt> ",
"min-length": 4,
"align": "right"
},
"river/window": {
"format": "{}",
},
"river/tags": {
"num-tags": 9,
"set-tags": [
1, 2, 4, 8, 16, 32, 64, 128, 256
],
"tag-labels": [
"1", "2", "3", "4", "5", "6", "7", "8", "9"
],
},
"dwl/tags": {
"num-tags": 9,
"disable-click": true,
"tag-labels": [
"1", "2", "3", "4", "5", "6", "7", "8", "9"
],
},
"dwl/window": {
"format": " <tt>{layout}</tt> {title} ",
"tooltip": false,
"max-length": 255,
},
"custom/time": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-time",
"interval": 3600,
"signal": 8,
},
"custom/dotfiles": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-dotfiles",
"interval": 3600,
"signal": 7,
},
"custom/layout": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "/home/master/.local/bin/dwmbar/dwmb-layout",
"interval": 3600,
"signal": 4,
},
"custom/mail": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-mail",
"exec-if": "$HOME/.local/bin/dwmbar/check-mail",
"interval": 3600,
"signal": 12,
},
"custom/eselect": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-eselect",
"exec-if": "$HOME/.local/bin/dwmbar/check-eselect",
"interval": 3600,
"signal": 11,
},
"custom/battery": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-battery",
"interval": 3600,
"signal": 1,
},
"custom/date": {
"format": "<tt>{}</tt>",
"return-type": "json",
"exec": "$HOME/.local/bin/dwmbar/dwmb-date",
"interval": 3600,
"signal": 6,
},
}
|