Created
September 12, 2018 12:52
-
-
Save pvik/67c75406a297901e08c99414416b84d4 to your computer and use it in GitHub Desktop.
i3 status bar config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = "#98be65" | |
color_bad = "#ff6c6b" | |
color_degraded = "#ECBE7B" | |
} | |
order += "disk /" | |
order += "disk /home" | |
order += "wireless wlan0" | |
order += "ethernet tun0" | |
order += "cpu_temperature 0" | |
order += "battery 0" | |
order += "load" | |
order += "volume master" | |
order += "tztime local" | |
wireless wlan0 { | |
format_up = " %essid (%ip/%quality/%bitrate)" | |
format_down = "✗" | |
} | |
ethernet tun0 { | |
format_up = "VPN" | |
format_down = "" | |
} | |
cpu_temperature 0 { | |
format = " %degrees°C" | |
max_threshold = 65 | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input" | |
} | |
battery 0 { | |
last_full_capacity = true | |
format = "%status %percentage" | |
format_down = "No battery" | |
status_chr = " CHR" | |
status_bat = " BAT" | |
status_unk = "" | |
status_full = "☻ FULL" | |
path = "/sys/class/power_supply/BAT%d/uevent" | |
low_threshold = 10 | |
} | |
run_watch VPN { | |
pidfile = "/var/run/vpnc/pid" | |
} | |
tztime local { | |
format = "%d %b %Y %H:%M:%S" | |
} | |
load { | |
format = " %1min" | |
} | |
disk "/" { | |
format = "/ %avail" | |
} | |
disk "/home" { | |
format = "~ %avail" | |
} | |
volume master { | |
format = " ♪ %volume " | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment