Created
February 5, 2016 07:21
-
-
Save linuxoid69/2200d88f8a21f678e70f to your computer and use it in GitHub Desktop.
i3status.conf
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 = 1 | |
output_format = i3bar | |
} | |
#order += "ipv6" | |
#order += "disk /" | |
#order += "run_watch VPN" | |
order += "whatismyip" | |
order += "wireless wlo1" | |
order += "mocp" | |
order += "brightness" | |
#order += "ethernet enp3s0" | |
order += "load" | |
order += "volume master" | |
order += "battery 0" | |
order += "weather" | |
order += "tztime local" | |
order += "bluetooth" | |
volume master { | |
format = "vol: %volume" | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} | |
#bluetooth { | |
# | |
#} | |
wireless wlo1 { | |
format_up = "W: (%quality at %essid) %ip" | |
format_down = "W: down" | |
} | |
ethernet enp0s20u2 { | |
# 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/openvpn.client.pid" | |
} | |
tztime local { | |
format = "%Y-%m-%d [%A] %H:%M:%S" | |
} | |
load { | |
format = "%1min" | |
} | |
disk "/" { | |
format = "%free" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment