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