]> git.sev.monster Git - dotfiles.git/blob - xdg/i3status/config
update scripts, vim plugins, fonts, firefox, tint2
[dotfiles.git] / xdg / i3status / config
1 general {
2         output_format = "i3bar"
3         interval = 6
4         color_good = "#85c000"
5         color_degraded = "#b58900"
6         color_bad = "#dc322f"
7 }
8
9 order += "wireless wlan0"
10 order += "ethernet _first_"
11 order += "cpu_usage"
12 order += "load"
13 order += "battery 0"
14 order += "tztime local"
15
16 wireless wlan0 {
17         format_up = "WLAN0 %essid %ip"
18         format_down = ""
19 }
20
21 ethernet _first_ {
22         format_up = "ETH %ip"
23         format_down = ""
24 }
25
26 cpu_usage {
27         format = "CPU %usage "
28         max_threshold = 90
29         degraded_threshold = 50
30         separator = false
31         separator_block_width = 0
32 }
33
34 load {
35         format = "%1min %5min %15min"
36         max_threshold = "1.5"
37 }
38
39 battery 0 {
40         format = "%status %percentage %remaining"
41         format_down = ""
42         low_threshold = 20
43 }
44
45 tztime local {
46         format = "%a/%b %d/%m/%Y %H:%M:%S"
47 }
This page took 0.033633 seconds and 4 git commands to generate.