Created
October 25, 2014 17:38
-
-
Save paitonic/c7e4669d143cb0779c66 to your computer and use it in GitHub Desktop.
i3 - i3status.conf
This file contains 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
# /etc/i3status.conf | |
# 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 | |
color_good = "#80BEED" | |
color_bad = "#777777" | |
} | |
order += "disk /" | |
order += "disk /home" | |
#order += "ethernet eth0" | |
order += "wireless wlan0" | |
order += "load" | |
order += "volume master" | |
order += "battery 0" | |
order += "tztime local" | |
wireless wlan0 { | |
format_up = "W: %ip %essid %quality" | |
format_down = "W: down" | |
} | |
ethernet eth0 { | |
# if you use %speed, i3status requires root privileges | |
format_up = "E: %ip (%speed)" | |
format_down = "E: down" | |
} | |
battery 0 { | |
#format = "%status %percentage %remaining" | |
format = ":%status" | |
path = "/sys/class/power_supply/BAT1/uevent" | |
} | |
run_watch DHCP { | |
pidfile = "/var/run/dhclient*.pid" | |
} | |
run_watch VPN { | |
pidfile = "/var/run/vpnc/pid" | |
} | |
tztime local { | |
format = "%d/%m %H:%M" | |
} | |
load { | |
format = "%1min %5min %15min" | |
} | |
disk "/" { | |
#format = "%free (or: %percentage_used used, %percentage_used_of_avail used of avail, %percentage_free free, %percentage_avail avail)" | |
format = "/ free: %free" | |
} | |
disk "/home" { | |
format = "/home free: %free" | |
} | |
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