-
Notifications
You must be signed in to change notification settings - Fork 0
/
.i3status.conf
112 lines (98 loc) · 2.74 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 = 1
output_format = "i3bar"
}
order += "wireless _first_"
order += "ethernet _first_"
order += "disk /"
order += "memory"
order += "load"
order += "cpu_usage"
order += "cpu_temperature 0"
order += "battery all"
order += "volume master"
order += "tztime local"
order += "read_file pomodoro"
read_file pomodoro {
path = "/home/jakutis/.pomodoro-status"
format_bad = " • idle"
format = " • %content"
}
battery all {
format = "%status %percentage"
format_down = ""
status_chr = "🗲"
status_bat = "◕"
status_unk = "◕"
status_full = "●"
low_threshold = 10
threshold_type = "percentage"
integer_battery_capacity = true
separator = false
separator_block_width = 0
}
load {
format = "CPU: %1min %5min %15min"
format_above_threshold = "CPU: %1min %5min %15min"
separator = false
separator_block_width = 0
}
cpu_usage {
format = " • %cpu0 %cpu1 %cpu2 %cpu3 %cpu4 %cpu5 %cpu6 %cpu7 • "
format_above_threshold = " • %cpu0 %cpu1 %cpu2 %cpu3 %cpu4 %cpu5 %cpu6 %cpu7 • "
format_above_degraded_threshold = " • %cpu0 %cpu1 %cpu2 %cpu3 %cpu4 %cpu5 %cpu6 %cpu7 • "
separator = false
separator_block_width = 0
}
cpu_temperature 0 {
format = "%degrees°C "
format_above_threshold = "%degrees°C "
path = "~/.config/dotfiles/temperature"
separator = false
separator_block_width = 0
}
memory {
format = "RAM: %available "
threshold_degraded = "4G"
threshold_critical = "2G"
format_degraded = "AVAILABLE MEMORY LOW: %available "
memory_used_method = "memavailable"
separator = false
separator_block_width = 0
}
disk "/" {
format = "Disk: %avail "
separator = false
separator_block_width = 0
}
wireless _first_ {
format_up = "%ip (%quality %essid) "
format_down = ""
separator = false
separator_block_width = 0
}
ethernet _first_ {
format_up = "%ip (%speed) "
format_down = ""
separator = false
separator_block_width = 0
}
tztime local {
format = "%Y-%m-%d %H:%M:%S %Z"
separator = false
separator_block_width = 0
}
volume master {
device = "pulse"
format = " ♪ %volume "
format_muted = " ♪ muted "
separator = false
separator_block_width = 0
}