-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathi3status.conf
More file actions
86 lines (68 loc) · 1.6 KB
/
i3status.conf
File metadata and controls
86 lines (68 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
general {
colors = true
interval = 1
}
order += "disk /"
order += "disk /home/bart"
order += "disk /media/sda9"
order += "disk /media/sdb1"
#order += "wireless wlan0"
order += "ethernet eth0"
#order += "ethernet eth1"
#order += "battery 1"
order += "cpu_usage"
order += "cpu_temperature 0"
order += "time"
wireless wlan0 {
format_up = "W: (%quality at %essid) %ip"
format_down = " "
}
ethernet eth0 {
# if you use %speed, i3status requires root privileges
format_up = "%speed"
#format_up = "eth0: %ip"
format_down = " "
}
ethernet eth1 {
# if you use %speed, i3status requires root privileges
format_up = "eth1: %ip (%speed)"
#format_up = "eth1: %ip"
format_down = "eth1: down"
}
#battery 0 {
# format = "%status %percentage %remaining"
#}
battery 1 {
format = "%status %percentage %remaining"
path = "/sys/class/power_supply/BAT%d/uevent"
last_full_capacity = true
#integer_battery_capacity = true
#threshold_type = time
#low_threshold = 10
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
time {
#format = "%a %d-%b-%Y %I:%M:%S %p"
format = "%a %d/%m/%y %H:%M"
}
cpu_usage {
format = "cpu: %usage"
}
cpu_temperature 0 {
format = "T: %degrees °C"
path = "/sys/devices/platform/coretemp.0/temp2_input"
}
disk "/" {
format = "/: %avail"
}
disk "/media/sda9" {
format = "/media/sda9: %avail"
}
disk "/home/bart" {
format = "/home/bart: %avail"
}
disk "/media/sdb1" {
format = "/media/sdb1: %avail"
}