diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-06-30 12:45:20 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-06-30 12:45:20 +0200 |
commit | 21a262169f5f079ee6e93db4101a4e89a48ae610 (patch) | |
tree | 9148999355311c618b944bff7ebe9281ac4ce1a8 /i3status | |
parent | 32580239d582195fd4ea6b53a1e5831621d0ea9e (diff) |
add i3 and i3 status
Diffstat (limited to 'i3status')
-rw-r--r-- | i3status/config | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/i3status/config b/i3status/config new file mode 100644 index 0000000..4583ca8 --- /dev/null +++ b/i3status/config @@ -0,0 +1,48 @@ +general { + colors = true + color_good = "#a3be8c" + color_bad = "#bf616a" + color_degraded = "#d08770" + output_format = "i3bar" + interval = 1 +} + +order += "disk /" +order += "battery 0" +order += "cpu_temperature 0" +order += "load" +order += "time" +order += "volume master" + +battery 0 { + format = "%status %percentage %remaining %emptytime" + format_down = "No battery" + status_chr = "⚡ CHR" + status_bat = "🔋 BAT" + status_unk = "? UNK" + status_full = "☻ FULL" + low_threshold = 10 +} + +time { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "%5min" +} + +cpu_temperature 0 { + format = "T: %degrees °C" +} + +disk "/" { + format = "%free" +} + +volume master { + format = "Vol:%volume" + device = "default" + mixer = "Master" + mixer_idx = 0 +} |