diff options
author | Case Duckworth | 2024-06-13 21:49:46 -0500 |
---|---|---|
committer | Case Duckworth | 2024-06-13 21:49:46 -0500 |
commit | 577ff7f0c4bafe9bf61c22e75156a8b509d75310 (patch) | |
tree | 230828bb1627d2bed574b0bbdc2538785d46a1e6 /config/i3status | |
parent | Add user-dirs stuff (diff) | |
download | dots-577ff7f0c4bafe9bf61c22e75156a8b509d75310.tar.gz dots-577ff7f0c4bafe9bf61c22e75156a8b509d75310.zip |
Add other programs
Diffstat (limited to 'config/i3status')
-rw-r--r-- | config/i3status/config | 34 |
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 | |||
3 | general { | ||
4 | output_format = "i3bar" | ||
5 | } | ||
6 | |||
7 | order += "volume master" | ||
8 | order += "wireless wlan0" | ||
9 | order += "battery all" | ||
10 | order += "cpu_usage" | ||
11 | order += "time" | ||
12 | |||
13 | volume "master" { | ||
14 | device = "default" | ||
15 | mixer = "Master" | ||
16 | } | ||
17 | |||
18 | wireless "wlan0" { | ||
19 | format_up = "%essid %quality" | ||
20 | format_down = "[no wifi]" | ||
21 | } | ||
22 | |||
23 | battery "all" { | ||
24 | format = "%status %percentage (%remaining)" | ||
25 | format_down = "[no battery]" | ||
26 | } | ||
27 | |||
28 | cpu_usage { | ||
29 | format = "CPU %usage" | ||
30 | } | ||
31 | |||
32 | time { | ||
33 | format = "%e %a %H:%M" | ||
34 | } \ No newline at end of file | ||