From 6c046e2e1fcf69188b0ef430c2274716450aed54 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Thu, 23 May 2019 18:34:25 +0200 Subject: [PATCH] Add i3status config --- Makefile | 3 +++ i3status/config | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 i3status/config diff --git a/Makefile b/Makefile index 6bd7f23..ccc7adf 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ fish: i3: install -Dm600 i3/config $(DESTDIR)$(PREFIX)/i3/config +i3status: + install -Dm600 i3status/config $(DESTDIR)$(PREFIX)/i3status/config + vis: install -Dm600 vis/visrc.lua $(DESTDIR)$(PREFIX)/vis/visrc.lua install -Dm700 vis/themes/* -t $(DESTDIR)$(PREFIX)/vis/themes/ diff --git a/i3status/config b/i3status/config new file mode 100644 index 0000000..7466977 --- /dev/null +++ b/i3status/config @@ -0,0 +1,65 @@ +# 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 += "volume master" +order += "battery all" +order += "cpu_temperature 0" +order += "load" +order += "tztime local" + +wireless _first_ { + format_up = "📶 %quality %essid %ip" + format_down = "📶 down" +} + +ethernet _first_ { + # if you use %speed, i3status requires root privileges + format_up = "🌍 %ip (%speed)" + format_down = "🌍 down" +} + +battery all { + format = "%status %percentage %remaining" + status_bat = "🔋" + status_chr = "⚡" + status_unk = "❓" + hide_seconds = true +} + +tztime local { + format = "📅%d.%m.%y ⏰%H:%M:%S" +} + +load { + format = "🏋️%1min" +} + +disk "/" { + format = "%avail" +} + +volume master { + format = "🔊 %volume" + format_muted = "🔇" + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +cpu_temperature 0 { + format = "🌡️%degrees" +}