diff options
author | Aaron Ball <nullspoon@oper.io> | 2020-05-12 08:35:44 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2020-05-12 09:03:49 -0600 |
commit | 3350ce6f2546c5d8891074e21b0d4971c6ffca8c (patch) | |
tree | aba195ab474f90cfb0b5e48b88cb32c2c2eac2db /i3cstat.conf.sample | |
download | i3cstat-3350ce6f2546c5d8891074e21b0d4971c6ffca8c.tar.gz i3cstat-3350ce6f2546c5d8891074e21b0d4971c6ffca8c.tar.xz |
Initial commit
This includes support for printing battery, cpu, filesystem, memory,
time, and date sections. Sections with percentage values also support
the `display = bar` configuration to make them display a bar rather than
the actual percent. Finally, for relevant data types, colors change from
green to red as percentage approaches appropriate levels (eg: when
memory is high, color is red; when battery is low, color is red,
otherwise green).
Diffstat (limited to 'i3cstat.conf.sample')
-rw-r--r-- | i3cstat.conf.sample | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/i3cstat.conf.sample b/i3cstat.conf.sample new file mode 100644 index 0000000..eedc450 --- /dev/null +++ b/i3cstat.conf.sample @@ -0,0 +1,41 @@ +# This is a sample configuration file +# Copy this to ~/.config/i3cstat.conf and make changes as you like. +# + +[bat] +label = bat: +name = BAT0 +display = bar + +[mem] +label = mem: +display = bar + +[cpu] +label = cpu: +display = bar + +[fs] +path = / + +[fs] +path = /tmp + +[net] +ifname = wlo1 +label = wlo + +[net] +ifname = eno1 +label = eno + +[net] +ifname = tun0 +label = vpn + +[time] +tz = Greenwich +label = GMT: + +[date] +tz = Greenwich |