Created
February 9, 2020 17:24
-
-
Save lightdiscord/314a80a1e73b72d3878dafa2277d115a to your computer and use it in GitHub Desktop.
i3status configuration
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
| general { | |
| output_format = "i3bar" | |
| colors = true | |
| interval = 5 | |
| } | |
| order += "wireless _first_" | |
| order += "ethernet _first_" | |
| order += "battery 0" | |
| order += "tztime local" | |
| wireless _first_ { | |
| format_up = "W: %ip (%quality at %essid, %bitrate)" | |
| format_down = "W: down" | |
| } | |
| ethernet _first_ { | |
| format_up = "E: %ip (%interface)" | |
| format_down = "E: down" | |
| } | |
| battery 0 { | |
| format = "%status %percentage %remaining %emptytime" | |
| format_down = "No battery" | |
| status_chr = "⚡ CHR" | |
| status_bat = "🔋 BAT" | |
| status_unk = "? UNK" | |
| status_full = "☻ FULL" | |
| path = "/sys/class/power_supply/BAT%d/uevent" | |
| low_threshold = 10 | |
| } | |
| tztime local { | |
| format = "%Y-%m-%d %H:%M:%S" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment