Fresh repo without sensitive data.
This commit is contained in:
commit
9003080a64
44 changed files with 2039 additions and 0 deletions
79
config/etc/i3/py3status
Normal file
79
config/etc/i3/py3status
Normal file
|
@ -0,0 +1,79 @@
|
|||
# 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 {
|
||||
# output_format = "dzen2"
|
||||
colors = true
|
||||
interval = 1
|
||||
|
||||
}
|
||||
|
||||
order += "group network"
|
||||
order += "disk /"
|
||||
order += "dpms"
|
||||
order += "load"
|
||||
order += "volume_status"
|
||||
order += "group tz"
|
||||
|
||||
group network {
|
||||
format = "{output}"
|
||||
button_next = 1
|
||||
button_previous = 2
|
||||
wireless _first_ {
|
||||
format_up = "W: (%quality at %essid) %ip"
|
||||
format_down = "W: down"
|
||||
}
|
||||
|
||||
ethernet _first_ {
|
||||
# if you use %speed, i3status requires root privileges
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
}
|
||||
}
|
||||
|
||||
group tz {
|
||||
format = "{output}"
|
||||
button_next = 1
|
||||
button_previous = 2
|
||||
tztime local {
|
||||
format = "GER %Y-%m-%d %H:%M:%S"
|
||||
timezone = "Europe/Berlin"
|
||||
}
|
||||
|
||||
tztime PRC {
|
||||
format = "PRC %Y-%m-%d %H:%M:%S"
|
||||
timezone = "Asia/Shanghai"
|
||||
}
|
||||
|
||||
tztime UTC {
|
||||
format = "UTC %Y-%m-%d %H:%M:%S"
|
||||
timezone = "Etc/UTC"
|
||||
}
|
||||
|
||||
tztime PST {
|
||||
format = "PST %Y-%m-%d %H:%M:%S"
|
||||
timezone = "PST8PDT"
|
||||
}
|
||||
uptime {
|
||||
format = "{weeks}:{days}:{hours}:{minutes}:{seconds}"
|
||||
}
|
||||
}
|
||||
|
||||
volume_status {
|
||||
button_up = 4
|
||||
button_down = 5
|
||||
button_mute = 2
|
||||
}
|
||||
|
||||
load {
|
||||
format = "%1min"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%avail"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue