dotwryn/config/i3status.conf

70 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-02-24 01:34:12 +00:00
general {
output_format = 'i3bar'
colors = true
separator = ''
color_good = '#8800FF'
color_bad = '#FF0044'
color_degraded = '#FF8800'
interval = 1
}
order += 'memory'
order += 'disk /'
order += 'wireless _first_'
order += 'ethernet _first_'
order += 'ipv6'
order += 'tztime local'
order += 'tztime utc'
order += 'battery all'
2021-02-25 22:03:20 +00:00
ipv6 {
format_up = '%ip'
format_down = '[no IPv6]'
}
2021-02-24 01:34:12 +00:00
wireless _first_ {
format_up = '(%essid%quality) %ip'
format_down = '(wifi:⊘)'
}
ethernet _first_ {
format_up = '(%speed) %ip'
format_down = ''
}
battery all {
format = '[%status%percentage]'
integer_battery_capacity = true
format_down = ''
status_bat = '⌁'
status_chr = '⚑ '
status_full = '😻 '
status_unk = 'BAT⁉'
low_threshold = 40
threshold_type = 'percentage'
}
disk '/' {
format = ''
format_below_threshold = '[root %avail / %total]'
prefix_type = 'custom'
low_threshold = 20
threshold_type = 'percentage_free'
}
memory {
format = ''
threshold_degraded = "20%"
threshold_critical = "10%"
format_degraded = '[RAM %free / %total]'
}
tztime local {
2021-02-27 00:08:51 +00:00
format = '%A %B %d, %Y : %I:%M:%S-%P'
2021-02-24 01:34:12 +00:00
}
tztime utc {
format = '{%H:%M-UTC}'
timezone = UTC
}