general {
	output_format = "i3bar"
	colors = true
	interval = 5
}

# The list below shows the order of items in the bar

order += "volume_status"
order += "wifi"
order += "online_status"
order += "arch_updates"
order += "tztime local"

# If cower is not installed you can comment out that line.
arch_updates {
  hide_if_zero = true
	include_cower = true
	format = 'UPD: Pacman {pacman} /AUR {aur}'
}

#Quick clock reference
tztime local {
	format = "%m-%d-%Y %H:%M:%S %Z"
	on_click 1 = "reload"
	on_click 3 = "restart"
}

# A quick online status indicator
online_status {
	format = 'Online Status:{icon}'
	url = 'https://www.google.com'
	on_click 1 = "exec killall pia && killall pia"
}

# Wifi Information -- may need to set device for your needs
  wifi{
	device = "wlp2s0"
	format = "{ssid} {bitrate} {icon}"
	on_click 1 = "exec termite -e nmtui"
	}

# Set thresholds to rainbow colors
volume_status {
    thresholds = [
        (0, "#FF0000"),
        (10, "#E2571E"),
        (20, "#FF7F00"),
        (30, "#FFFF00"),
        (40, "#00FF00"),
        (50, "#96BF33"),
        (60, "#0000FF"),
        (70, "#4B0082"),
        (80, "#8B00FF"),
        (90, "#FFFFFF")
    ]
	on_click 3 = "exec vlc"
}
