about summary refs log tree commit diff stats
path: root/config/i3status
diff options
context:
space:
mode:
authorCase Duckworth2024-06-13 21:49:46 -0500
committerCase Duckworth2024-06-13 21:49:46 -0500
commit577ff7f0c4bafe9bf61c22e75156a8b509d75310 (patch)
tree230828bb1627d2bed574b0bbdc2538785d46a1e6 /config/i3status
parentAdd user-dirs stuff (diff)
downloaddots-577ff7f0c4bafe9bf61c22e75156a8b509d75310.tar.gz
dots-577ff7f0c4bafe9bf61c22e75156a8b509d75310.zip
Add other programs
Diffstat (limited to 'config/i3status')
-rw-r--r--config/i3status/config34
1 files changed, 34 insertions, 0 deletions
diff --git a/config/i3status/config b/config/i3status/config new file mode 100644 index 0000000..e59aeb6 --- /dev/null +++ b/config/i3status/config
@@ -0,0 +1,34 @@
1# i3status config
2
3general {
4 output_format = "i3bar"
5}
6
7order += "volume master"
8order += "wireless wlan0"
9order += "battery all"
10order += "cpu_usage"
11order += "time"
12
13volume "master" {
14 device = "default"
15 mixer = "Master"
16}
17
18wireless "wlan0" {
19 format_up = "%essid %quality"
20 format_down = "[no wifi]"
21}
22
23battery "all" {
24 format = "%status %percentage (%remaining)"
25 format_down = "[no battery]"
26}
27
28cpu_usage {
29 format = "CPU %usage"
30}
31
32time {
33 format = "%e %a %H:%M"
34} \ No newline at end of file