diff options
author | johannst <stoelp@eit.uni-kl.de> | 2017-10-08 13:33:43 +0200 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2017-10-08 13:33:43 +0200 |
commit | 58102debc85110c06b556e889daa40977417a005 (patch) | |
tree | f07fb32cca7caa5b1e7428df3197f1324901374d /i3status.conf | |
parent | 4330b4b4813a9c13886716b92cde7aca8973d57c (diff) | |
download | dotfiles-58102debc85110c06b556e889daa40977417a005.tar.gz dotfiles-58102debc85110c06b556e889daa40977417a005.zip |
Added i3wm & i3status config files with corresponding installers
Diffstat (limited to 'i3status.conf')
-rw-r--r-- | i3status.conf | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/i3status.conf b/i3status.conf new file mode 100644 index 0000000..32d77e9 --- /dev/null +++ b/i3status.conf @@ -0,0 +1,51 @@ +# dotfiles -- i3status +# author: johannst + +general { + colors = true + interval = 5 +} + +order += "wireless wlan0" +order += "ethernet eth0" +order += "battery 0" +order += "load" +order += "volume master" +order += "tztime local" + +wireless wlan0 { + format_up = "W: (%quality at %essid, %bitrate) %ip" + format_down = "W: down" +} + +ethernet eth0 { + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +battery 0 { + # show battery capacity in relation to last full capacity instead of the design capacity + last_full_capacity = true + integer_battery_capacity = true + low_threshold = 30 + threshold_type = "percentage" + format = "%status %percentage %remaining (%consumption)" + path = "/sys/class/power_supply/BAT%d/uevent" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "%1min" +} + +volume master { + format = "♪: %volume" + format_muted = "♪: muted (%volume)" + device = "default" + mixer = "Master" + mixer_idx = 0 +} + |