Add i3status config
This commit is contained in:
parent
ec730ae209
commit
6c046e2e1f
2 changed files with 68 additions and 0 deletions
65
i3status/config
Normal file
65
i3status/config
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue