diff options
| author | Amin Bandali <bandali@gnu.org> | 2021-04-03 19:50:50 -0400 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2021-04-03 19:50:50 -0400 | 
| commit | 17d2cfa08301bfb62cce5a02feb8ad7acf9b0f7c (patch) | |
| tree | aa529b3971f22c903e172a42977b015bf1c737ba /.config/i3status | |
| parent | 316a13b4e978ecdd7a5d4133715230b65321007e (diff) | |
| download | configs-17d2cfa08301bfb62cce5a02feb8ad7acf9b0f7c.tar.gz configs-17d2cfa08301bfb62cce5a02feb8ad7acf9b0f7c.tar.xz configs-17d2cfa08301bfb62cce5a02feb8ad7acf9b0f7c.zip | |
Add configs for compton, dunst, i3, i3status, jami, and mpv
Diffstat (limited to '.config/i3status')
| -rw-r--r-- | .config/i3status/config | 67 | 
1 files changed, 67 insertions, 0 deletions
| diff --git a/.config/i3status/config b/.config/i3status/config new file mode 100644 index 0000000..afe4a28 --- /dev/null +++ b/.config/i3status/config @@ -0,0 +1,67 @@ +# 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 +        interval = 5 +        output_format = "i3bar" +} + +# order += "ipv6" +order += "disk /" +order += "disk /data" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery 0" +order += "volume master" +order += "load" +order += "tztime local" + +wireless _first_ { +        format_up = "W:%quality %essid %ip" +        format_down = "W: down" +} + +ethernet _first_ { +        # if you use %speed, i3status requires root privileges +        # format_up = "E: %ip (%speed)" +        format_up = "E: %ip" +        format_down = "E: down" +} + +battery 0 { +        format = "%status %percentage %remaining %consumption" +        path = "/sys/class/power_supply/BAT%d/uevent" +        low_threshold = "10" +        threshold_type = "percentage" +        last_full_capacity = true +        integer_battery_capacity = true +        hide_seconds = true +} + +tztime local { +        format = "%A %Y-%m-%d %I:%M:%S%P" +} + +volume master { +        format = "♪ %volume" +        format_muted = "🔇 %volume" +        device = "pulse" +} + +load { +        format = "%1min" +} + +disk "/" { +        format = "/ %avail" +} + +disk "/data" { +        format = "/data %avail" +} | 
