diff --git a/.i3/i3status.conf b/.i3/i3status.conf new file mode 100644 index 0000000..5aa3b3c --- /dev/null +++ b/.i3/i3status.conf @@ -0,0 +1,93 @@ +# 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 + +} + + +order += "volume_status" +order += "disk /" + +order += "sysdata" +order += "run_watch DHCP" +order += "run_watch VPN" +order += "wireless wlan0" +order += "ethernet eth0" + +order += "battery 0" +order += "battery 1" +#order += "load" +#order += "tztime local" +order += "time" +order += "whoami" + +whoami{ + on_click 1 = "exec terminator -x screenfetch" +} + +time{ + on_click 1 = "exec terminator -x pal -m" +} + +volume_status{ + cache_timeout = 1 + threshold_bad = 10 + threshold_degraded = 25 + on_click 1 = "exec pavucontrol" +} + +sysdata{ + format ="CPU: {cpu_usage}% TMP:{cpu_temp} MEM:{mem_used}/{mem_total}" + on_click 1 = "exec terminator -x htop" +} + +wireless wlan0 { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +ethernet eth0 { + # if you use %speed, i3status requires root privileges + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +battery 0{ + format = "%status %percentage %remaining" + path = "/sys/class/power_supply/BAT0/uevent" +} + +battery 1{ + format = "%status %percentage %remaining" + path = "/sys/class/power_supply/BAT1/uevent" +} + +run_watch DHCP { + pidfile = "/var/run/dhclient*.pid" +} + +run_watch VPN { + pidfile = "/var/run/vpnc/pid" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" + on_click 1 = "exec terminator -x pal -m" +} + +load { + format = "[ load: %1min, %5min, %15min ]" +} + +disk / { + format = "%free/500 GiB" + on_click 1 = "exec nautilus" +}