diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2019-08-22 18:30:24 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2019-08-22 18:30:24 +0200 |
| commit | 4ead9be4468d8d58c027bf6e6616e3b4d6e727eb (patch) | |
| tree | 18ab19fd5213c9d302b165eafa46a6f1f8902e75 /.i3status.conf | |
| parent | 04f4a7df197ce327f36b666869a1ca2f09934e58 (diff) | |
| download | dotfiles-4ead9be4468d8d58c027bf6e6616e3b4d6e727eb.tar.gz dotfiles-4ead9be4468d8d58c027bf6e6616e3b4d6e727eb.zip | |
Complete re-structuring so it's easier to install
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.i3status.conf')
| -rw-r--r-- | .i3status.conf | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/.i3status.conf b/.i3status.conf new file mode 100644 index 0000000..b8fc77b --- /dev/null +++ b/.i3status.conf @@ -0,0 +1,84 @@ +# i3status configuration file. +# see "man i3status" for documentation. +# Largely based on https://github.com/flavio/dotfiles. + +# 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 + color_good = "#859900" + color_degraded = "#b58900" + color_bad = "#dc322f" + interval = 5 +} + +order += "disk /" +order += "disk /home" +order += "ethernet br0" +# NOTE: uncomment this and remove the previous line if you are using a laptop. +#order += "wireless wlan0" +order += "load" +order += "volume master" +# NOTE: use these two if you are using a laptop. +#order += "battery 0" +#order += "battery 1" +order += "tztime local" + +# Yes, I'm weird :P Use whatever ethernet interface you have here. +# NOTE: remove this if you are using a laptop. +ethernet br0 { + format_up = "E: %ip" + format_down = "E: down" +} + +# NOTE: use this if you are using a laptop. +#wireless wlp3s0 { +#format_up = "W: (%quality at %essid) %ip" +#format_down = "W: down" +#} + +# NOTE: use this if you are using a laptop. +#battery 0 { +#format = "%status %percentage" +#format_down = "No battery" +#status_chr = "⚇ CHR" +#status_bat = "⚡ BAT" +#status_full = "☻ FULL" +#low_threshold = 10 +#} + +# NOTE: use this if you are using a laptop. +#battery 1 { +#format = "%status %percentage" +#format_down = "No battery" +#status_chr = "⚇ CHR" +#status_bat = "⚡ BAT" +#status_full = "☻ FULL" +#low_threshold = 10 +#} + +tztime local { + format = "%Y-%m-%d %H:%M" +} + +load { + format = "%1min" +} + +disk "/" { + format = "/ %free" +} + +disk "/home" { + format = "/home %free" +} + +volume master { + format = "♪: %volume" + device = "default" + mixer = "Master" + mixer_idx = 0 +} |
