home · contact · privacy
0acc8c96f1ea5104eb58816d6d4c3bf2446cf77a
[config] / buster / home_files / user_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 += "wireless wlp2s0"
12 order += "ethernet enp1s0"
13 order += "battery 0"
14 order += "cpu_usage"
15 order += "load"
16 order += "cpu_temperature 0"
17 order += "time"
18 order += "volume master"
19
20 # How much space is left in / ?
21 disk "/" {
22   format = "/: %avail available of %total"
23   separator_block_width = 25
24 }
25
26 # WLAN status: show IP and connection quality or "down".
27 wireless wlp2s0 {
28   format_up = "w: (%quality at %essid) %ip"
29   format_down = "w: down"
30   separator_block_width = 10
31 }
32
33 # Ethernet status: show IP or "down".
34 ethernet enp1s0 {
35   format_up = "e: %ip"
36   format_down = "e: down"
37   separator_block_width = 25
38 }
39
40 # Battery status: show FULL/CHARGING/BATTERY, storage, time left.
41 battery 0 {
42   format = "b: %status %percentage %remaining"
43   separator_block_width = 25
44 }
45
46 # Show CPU usage.
47 cpu_usage {
48   format = "cpu: %usage"
49   separator_block_width = 10
50 }
51
52 # Show system load during last 1/5/15 minutes.
53 load {
54   format = "%1min %5min %15min"
55   separator_block_width = 25
56 }
57
58 # Show CPU temperature in degrees of celsius.
59 cpu_temperature 0 {
60   format = "%degrees °C"
61   separator_block_width = 25
62 }
63
64 # Show date/time/timezone as "year-month-day hour:minute:second
65 # timezone_numeric/timezone_alphabetic".
66 time {
67   format = "%Y-%m-%d %H:%M:%S %z/%Z"
68   separator_block_width = 25
69 }
70
71 volume master {
72   format = "♪: %volume"
73   format_muted = "♪: muted (%volume)"
74   separator_block_width = 25
75 }