Add i3status config

This commit is contained in:
joachimschmidt557 2019-05-23 18:34:25 +02:00
parent ec730ae209
commit 6c046e2e1f
2 changed files with 68 additions and 0 deletions

View file

@ -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/

65
i3status/config Normal file
View file

@ -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"
}