home · contact · privacy
Add to Buster user config i3status config.
[config] / buster / home_files / eeepc / .config / i3status / config
1 # plomlompom's i3 status bar configuration
2
3 # Activate colors; set update interval of one second.
4 general {
5   colors = true
6   interval = 1
7 }
8
9 # Selection / order of status elements.
10 order += "disk /"
11 order += "disk /home"
12 order += "wireless wlp2s0"
13 order += "ethernet enp1s0"
14 order += "battery 0"
15 order += "cpu_usage"
16 order += "load"
17 order += "cpu_temperature 0"
18 order += "time"
19 order += "volume master"
20
21 # How much space is left in / ?
22 disk "/" {
23   format = "/: %avail available of %total"
24   separator_block_width = 10
25 }
26
27 # How much space is left in /home ?
28 disk "/home" {
29   format = "/home: %avail available of %total"
30   separator_block_width = 40
31 }
32
33
34 # WLAN status: show IP and connection quality or "down".
35 wireless wlp2s0 {
36   format_up = "w: (%quality at %essid) %ip"
37   format_down = "w: down"
38   separator_block_width = 10
39 }
40
41 # Ethernet status: show IP or "down".
42 ethernet enp1s0 {
43   format_up = "e: %ip"
44   format_down = "e: down"
45   separator_block_width = 40
46 }
47
48 # Battery status: show FULL/CHARGING/BATTERY, storage, time left.
49 battery 0 {
50   format = "b: %status %percentage %remaining"
51   separator_block_width = 40
52 }
53
54 # Show CPU usage.
55 cpu_usage {
56   format = "cpu: %usage"
57   separator_block_width = 10
58 }
59
60 # Show system load during last 1/5/15 minutes.
61 load {
62   format = "%1min %5min %15min"
63   separator_block_width = 40
64 }
65
66 # Show CPU temperature in degrees of celsius.
67 cpu_temperature 0 {
68   format = "%degrees °C"
69   separator_block_width = 40
70 }
71
72 # Show date/time/timezone as "year-month-day hour:minute:second
73 # timezone_numeric/timezone_alphabetic".
74 time {
75   format = "%Y-%m-%d %H:%M:%S %z/%Z"
76   separator_block_width = 40
77 }
78
79 volume master {
80   format = "♪: %volume"
81   format_muted = "♪: muted (%volume)"
82   separator_block_width = 40
83 }