aboutsummaryrefslogtreecommitdiff
path: root/i3status
blob: 2550dc2eae1cc3e31a93d81ea6a5620e19ce9ec7 (plain)
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
general {
	colors = true
	interval = 5
}

order += "cpu_temperature 0"
order += "load"
order += "memory"
order += "disk /"
order += "ethernet enp5s0"
order += "tztime brisbane"
order += "tztime ny"
order += "tztime local"

load {
	format = "CPU: %5min"
}

memory {
	format = "RAM: %free"
}

disk "/" {
	format = "DISK: %free"
}

ethernet enp5s0 {
	format_up = "NET: %ip (%speed)"
	format_down = "E: down"
}

cpu_temperature 0 {
	format = "TEMP: %degrees°C"
	path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
}

tztime local {
	format = "%Y-%m-%d %H:%M:%S"
}

tztime brisbane {
	format = "Brisbane: %H:%M"
	timezone = "Australia/Brisbane"
}

tztime ny {
	format = "NY: %H:%M"
	timezone = "America/New_York"
}

tztime local {
	format = "Local: %Y-%m-%d %H:%M:%S"
}