This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3status.conf
112 lines (95 loc) · 2.5 KB
/
i3status.conf
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# i3status configuration file.
# see "man i3status" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general {
colors = true
interval = 5
markup = "pango"
# base16 tomorrow night theme
# https://github.com/Eluminae/base16-i3status/blob/master/colors/base16-tomorrow-night.config
# color_good = "#b5bd68?
# color_bad = "#cc6666"
# color_degraded = "#f0c674"
}
order += "path_exists problem"
order += "volume master"
order += "disk /"
#order += "disk /tank"
order += "path_exists INT"
order += "path_exists FRA"
order += "path_exists MTV"
order += "path_exists RCN"
order += "ethernet enp4s0"
order += "cpu_usage"
order += "cpu_temperature 0"
order += "tztime UTC"
order += "tztime local"
path_exists problem {
path = "/home/jcsims/problem"
color_good = "#FF0000"
format = "%title"
format_down = ""
}
ethernet enp4s0 {
# if you use %speed, i3status requires root privileges
format_up = "H: %ip"
format_down = "H: down"
}
tztime local {
format = "<span foreground='#08def0'>local:</span> %time"
format_time = "%a %Y-%m-%d %H:%M:%S"
}
tztime UTC {
format = "<span foreground='#08def0'>UTC:</span> %time"
format_time = "%m-%d %H:%M"
timezone = "UTC"
}
cpu_usage {
format = "CPU: %usage"
}
disk "/" {
format = "/ %avail"
low_threshold = "10"
}
disk "/tank" {
format = "tank %avail"
low_threshold = "5"
}
cpu_temperature 0 {
format = "T: %degrees °C"
path = "/sys/class/hwmon/hwmon1/temp1_input"
max_threshold = "95"
}
volume master {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "default"
mixer = "Master"
mixer_idx = 0
}
path_exists INT {
path = "/proc/sys/net/ipv4/conf/tun-INT"
format = "%title"
format_down = "%title"
separator = false
}
path_exists FRA {
path = "/proc/sys/net/ipv4/conf/tun-FRA"
format = "%title"
format_down = "%title"
separator = false
}
path_exists MTV {
path = "/proc/sys/net/ipv4/conf/tun-MTV"
format = "%title"
format_down = "%title"
separator = false
}
path_exists RCN {
path = "/proc/sys/net/ipv4/conf/tun-RCN"
format = "%title"
format_down = "%title"
}