.i3status.conf.py3status 2.82 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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
        color_good = "#F9FAF9"
        color_bad = "#F9FAF9"
        color_degraded = "#DC322F"
}

order += "spotify"
order += "net_rate"
order += "whatismyip"
order += "wireless _first_"
order += "ethernet _first_"
# order += "load"
order += "cpu_usage"
24
25
#order += "disk /"
order += "diskdata"
26
order += "timer"
27
#order += "battery all"
28
29
order += "battery_level"
# order += "load"
30
order += "path_exists VPN"
31
order += "external_script"
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
order += "tztime local"
# order += "ipv6"

spotify {
	format = "( {artist} : {title})"
	format_down = ""
	format_stopped = ""
}

timer {
	format = ":{timer}"
	time = 3600
}

cpu_usage {
        format = " cpu  %usage "
}

load {
        format = " load %1min "
        # max_threshold = 0.3
}

55
diskdata {
56
    disk = sda2
57
	prefix_type = decimal
58
    #format_space = "[\?min_length=5 {value:.2f}]"
59
	format = " ⛁ {used_percent}% (U:{used} GB, F:{free} GB) "
60
61
}

62
63
64
65
66
external_script {
    format = "{output}"
    script_path = "cat /sys/class/tty/tty0/active"
}

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
whatismyip {
	format = "   {isp}\|{city}\|{countryCode} ({ip}) "
	icon_on = ""
	hide_when_offline = True
	url_geo = "http://ip-api.com/json"
}

wireless _first_ {
# if you use %speed, i3status requires root privileges
        format_up = "  %essid (%ip) "
        format_down = ""
}

ethernet _first_ {
# if you use %speed, i3status requires root privileges
        format_up = "  eth (%ip) "
        format_down = ""
}

net_rate {
87
	format_value = "[\?min_length=10 {value:.1f} {unit}]"
88
89
	si_units = "True"
	format = "{down}⇣ {up}⇡"
90
        interfaces_blacklist = "lo"
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
}

battery all {
        # format = "%status %percentage %remaining %emptytime"
        format = " %status %percentage %remaining "
        format_down = "No battery"
        last_full_capacity = true
        integer_battery_capacity = true
        # status_chr = ""
        status_chr = "⚡"
        # status_bat = "bat"
        # status_bat = "☉"
        status_bat = ""
        # status_unk = "?"
        status_unk = ""
        # status_full = ""
        status_full = "☻"
        low_threshold = 15
        threshold_type = time
}

battery_level {
113
	cache_timeout = 30
114
115
	measurement_mode = "acpi"
	hide_when_full = "True"
116
117
118
	hide_seconds = "True"
	blocks = ""
	color_charging = "#00ff00"
119
	format = " {icon} {percent}% ({time_remaining}) "
120
121
122
123
}

tztime local {
        # format = "%Y-%m-%d %H:%M:%S"
124
        format = " %d/%m %H:%M:%S"
125
}
126
127
128
129
130
131
132

path_exists VPN {
        format = "%title"
        format_down = ""
        color_good = "#00ff00"
        path = "/sys/class/net/tun0/dev_id"
}