Skip to content

Commit

Permalink
Add i3bar config.
Browse files Browse the repository at this point in the history
  • Loading branch information
yesimon committed Aug 25, 2015
1 parent b106ffe commit bfc58a6
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions home/.config/i3status/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# 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
}

# order += "ipv6"
order += "disk /"
order += "disk /srv/media"
# order += "run_watch DHCP"
# order += "run_watch VPN"
order += "wireless wlan0"
# order += "ethernet eth0"
# order += "battery 0"
order += "load"
order += "tztime local"
order += "volume master"

wireless wlan0 {
format_up = "W: (%quality at %essid)"
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"
}

run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}

run_watch VPN {
pidfile = "/var/run/vpnc/pid"
}

tztime local {
format = "%Y-%m-%d %H:%M:%S"
}

load {
format = "%1min"
}

disk "/" {
format = "%avail"
}

disk "/srv/media" {
format = "/srv/media: %avail"
}

volume master {
format = " %volume"
format_muted = " %volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}

0 comments on commit bfc58a6

Please sign in to comment.