blob: 7cb37a022148de54ea89fdfb1ff4fd818e27231e (
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
|
{ pkgs, inputs, config, ... }:
let
inherit (config.colorScheme) ui editor common;
in
{
programs.waybar = {
enable = true;
settings = {
mainBar =
let
gap = 0;
in
{
layer = "top";
position = "top";
margin-top = gap;
margin-left = gap;
margin-right = gap;
modules-left = [ "sway/workspaces" ];
modules-center = [ ];
modules-right = [
"cpu"
"wireplumber"
"battery"
"clock"
];
clock = {
format = "{:%a %b %d %I:%M:%S}";
interval = 1;
tooltip-format = "<tt>{calendar}</tt>";
};
cpu = {
format = " {usage}%";
};
battery = {
format = "{icon} {capacity}%";
format-icons = {
default = [
""
""
""
""
""
""
""
""
""
""
""
];
charging = [
""
""
""
""
""
""
""
""
""
""
];
};
states = {
low = 20;
};
};
wireplumber = {
format = " {volume}%";
format-muted = " {volume}%";
on-click = "wpctl set-mute @DEFAULT_SINK@ toggle";
max-volume = 150;
scroll-step = 1;
};
};
};
style = ''
* {
/* waybar's css font-size is px, but theme.font.size is points like
ghostty and fuzzel take. 1pt = 4/3px. */
font-family: ${config.theme.font.family};
font-size: ${builtins.toString (config.theme.font.size * 4 / 3)}px;
}
window#waybar {
background: ${ui.bg};
color: ${editor.fg};
}
.module {
padding: 0px 15px 0px;
}
#workspaces button {
font-weight: normal;
color: ${ui.fg};
background: none;
border: none;
}
#workspaces button.focused {
color: ${common.accent.tint};
}
#workspaces button.urgent {
color: ${common.error};
}
#workspaces button:hover {
font-weight: bold;
color: ${editor.fg};
box-shadow: none;
text-shadow: inherit;
background: none;
transition: none;
}
/* matches the `states.low = 20` threshold on the battery module */
#battery.low {
color: ${common.error};
}
'';
};
wayland.windowManager.sway.config.bars = [
{
command = "waybar";
}
];
}
|