dotfiles

andersuno
git clone git://git.andersuno.nu/dotfiles.git
Log | Files | Refs | README

commit e3576215d7b7eec0aa7e419fe4f1241c2a8a4b92
parent 5d3841697838ca966941596cef691b9b4ad50279
Author: anders <anders@debian-acer.andersuno.nu>
Date:   Wed,  9 Jan 2019 20:50:43 +0100

 Changes to be committed:
	new file:   i3status.conf

Diffstat:
Ai3status.conf | 64++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+), 0 deletions(-)

diff --git a/i3status.conf b/i3status.conf @@ -0,0 +1,64 @@ +# 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 += "ipv6" +order += "disk /" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +order += "volume master" +order += "load" +order += "cpu_temperature 0" +order += "tztime local" + +wireless _first_ { + format_up = "📶:(%quality@%essid ) %ip" + format_down = "" + #format_down = "W:down" +} + +ethernet _first_ { + # if you use %speed, i3status requires root privileges + format_up = "E:%ip(%speed)" + format_down = "" + #format_down = "E:down" +} + +battery all { + format = "%status%percentage %remaining" + status_chr = "⚡:" + status_bat = "🔋:" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "%1min" +} + +disk "/" { + format = "%avail" +} + +volume master { + format = "♪:%volume" + format_muted = "♪:muted(%volume)" + device = "pulse:0" +} + +cpu_temperature 0 { + format = "❄:%degrees°C" + path = "/sys/class/thermal/thermal_zone0/temp" +}