# 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 {
	output_format = i3bar
        colors = true
        interval = 5
	separator = "~"
}

order += "disk /"
order += "disk /home"
order += "wireless _first_"
order += "ethernet eth0"
order += "path_exists VPN"
order += "battery_level"
order += "sysdata"
order += "volume master"
order += "uptime"
order += "tztime local"

uptime {
}

spotify {
        
}

battery_level {
    battery_id = all
    charging_character=""
    blocks=""
    format = "{icon} {percent}%"
}

sysdata {
    format = "CPU: {cpu_usage}%, MEM: {mem_used_percent}%"    
}

wireless _first_ {
	format_up = " %ip (%essid)"
	format_down = " down"
}

ethernet eth0 {
    format_up = " %ip (%speed)"
    format_down = " down"
}

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

path_exists VPN {
    path = "/proc/sys/net/ipv4/conf/tun0"
}

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

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

disk "/home" {
	format = "/home %percentage_free"
}

volume master {
    format = " %volume"
    format_muted = " %volume"
    device = "default"
    mixer = "Master"
    mixer_idx = 0
}