diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2016-04-22 20:58:35 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2016-04-22 20:58:35 +0200 |
| commit | 00a7e52f822666d5b72537fc42c3fbab84a046bf (patch) | |
| tree | 8c44717d12efc44c6c32c9ac27f6fa3e0826dc52 /i3status.conf | |
| parent | 7299643a6a5e00d93bf89b8bb663af381f558412 (diff) | |
| download | dotfiles-00a7e52f822666d5b72537fc42c3fbab84a046bf.tar.gz dotfiles-00a7e52f822666d5b72537fc42c3fbab84a046bf.zip | |
Uploading files from i3, X...
I've been successfully running i3 and I'm quite happy with it.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'i3status.conf')
| -rw-r--r-- | i3status.conf | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/i3status.conf b/i3status.conf new file mode 100644 index 0000000..8086fda --- /dev/null +++ b/i3status.conf @@ -0,0 +1,53 @@ +# 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 { + colors = true + color_good = "#859900" + color_degraded = "#b58900" + color_bad = "#dc322f" + interval = 5 +} + +order += "disk /" +order += "disk /home" +order += "ethernet br0" +order += "load" +order += "volume master" +order += "tztime local" + +# Yes, I'm weird :P Use whatever ethernet interface you have here. +ethernet br0 { + format_up = "E: %ip" + format_down = "E: down" +} + +# TODO: have the same above but for wifi. + +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 +} |
