Created
April 4, 2016 17:17
-
-
Save kingscott/5dfd3e0e3f88fe14e9a0076db52c4551 to your computer and use it in GitHub Desktop.
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 = 5 | |
} | |
order += "disk /" | |
order += "ethernet _first_" | |
order += "load" | |
order += "tztime local" | |
ethernet _first_ { | |
# if you use %speed, i3status requires root privileges | |
format_up = "%ip" | |
format_down = "down" | |
} | |
tztime local { | |
format = "%Y-%m-%d %I:%M" | |
} | |
load { | |
format = "%1min" | |
} | |
disk "/" { | |
format = "%avail" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment