Created
February 15, 2015 00:54
-
-
Save Logiraptor/7cd8d87a35eb472cff08 to your computer and use it in GitHub Desktop.
i3bar config
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 { | |
| output_format = "i3bar" | |
| colors = true | |
| interval = 5 | |
| } | |
| order += "load" | |
| order += "wireless wlan0" | |
| order += "ethernet eth0" | |
| order += "battery 1" | |
| order += "volume master" | |
| order += "tztime local" | |
| wireless wlan0 { | |
| format_up = "%essid %quality" | |
| format_down = "No Wifi" | |
| } | |
| ethernet eth0 { | |
| # if you use %speed, i3status requires root privileges | |
| format_up = "E: %ip (%speed)" | |
| format_down = "" | |
| } | |
| battery 1 { | |
| format = "%status %percentage %remaining" | |
| } | |
| tztime local { | |
| format = "(%m %d %Y) %H:%M:%S" | |
| } | |
| load { | |
| format = "%1min" | |
| } | |
| volume master { | |
| format = "♪: %volume" | |
| device = "default" | |
| mixer = "Master" | |
| mixer_idx = 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment