initial commit
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
# i3status configuration file.
|
||||
|
||||
general {
|
||||
colors = true
|
||||
interval = 30
|
||||
output_format = "i3bar"
|
||||
markup = "pango"
|
||||
}
|
||||
|
||||
order += "wireless _first_"
|
||||
order += "path_exists WG_LON"
|
||||
# order += "ethernet _first_"
|
||||
# order += "cpu_temperature 0"
|
||||
# order += "memory"
|
||||
# order += "load"
|
||||
# order += "disk /"
|
||||
#
|
||||
# order += "run_watch VPN"
|
||||
# run_watch TMUX {
|
||||
# pidfile = "/tmp/tmux-1000/default"
|
||||
# }
|
||||
|
||||
order += "path_exists SYNCTHING"
|
||||
order += "volume master"
|
||||
order += "battery 0"
|
||||
order += "tztime local"
|
||||
|
||||
|
||||
load {
|
||||
format = "%5min"
|
||||
}
|
||||
|
||||
path_exists WG_LON {
|
||||
path = "/sys/class/net/gb-lon-wg-303/dev_id"
|
||||
format_down = ""
|
||||
format= " lon-wg-303"
|
||||
color_good = "#a5adce"
|
||||
color_degraded = "#e5c890"
|
||||
color_bad = "#bf616a"
|
||||
}
|
||||
|
||||
path_exists SYNCTHING {
|
||||
path = "/home/dafu/.local/state/syncthing/syncthing.lock"
|
||||
format = "<span color='#e5c890'></span>"
|
||||
format_down = "<span color='#bf616a'></span>"
|
||||
}
|
||||
|
||||
cpu_temperature 0 {
|
||||
format = "%degrees°"
|
||||
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon7/temp1_input"
|
||||
color_good = "#a5adce"
|
||||
color_degraded = "#e5c890"
|
||||
color_bad = "#bf616a"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = "%free"
|
||||
threshold_degraded = "10%"
|
||||
format_degraded = "MEMORY: %free"
|
||||
color_good = "#a5adce"
|
||||
color_degraded = "#e5c890"
|
||||
color_bad = "#bf616a"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%free"
|
||||
}
|
||||
|
||||
wireless _first_ {
|
||||
format_up = " %quality %essid"
|
||||
format_down = "睊"
|
||||
color_good = "#a5adce"
|
||||
color_degraded = "#e5c890"
|
||||
color_bad = "#bf616a"
|
||||
}
|
||||
|
||||
ethernet _first_ {
|
||||
format_up = " ip"
|
||||
format_down = ""
|
||||
color_good = "#a5adce"
|
||||
color_degraded = "#a5adce"
|
||||
color_bad = "#a5adce"
|
||||
|
||||
}
|
||||
|
||||
volume master {
|
||||
format = " %volume"
|
||||
format_muted = " %volume"
|
||||
device = "default"
|
||||
mixer = "Master"
|
||||
mixer_idx = 0
|
||||
}
|
||||
|
||||
battery 0 {
|
||||
format = "%status <span color='#e5c890'>%percentage</span>"
|
||||
# format = "%status <span color='#e5c890'>%percentage</span> %remaining"
|
||||
# format_degraded = "%status <span color='#bf616a'>%percentage</span> %remaining"
|
||||
format_down = "No battery"
|
||||
integer_battery_capacity = true
|
||||
last_full_capacity = true
|
||||
status_chr = ""
|
||||
status_bat = ""
|
||||
status_unk = "?"
|
||||
status_full = ""
|
||||
low_threshold = "30"
|
||||
threshold_type = "percent"
|
||||
path = "/sys/class/power_supply/BAT%d/uevent"
|
||||
# colors = true
|
||||
# color_good = "#e5c890"
|
||||
# color_degraded = "#ef9f76"
|
||||
# color_bad = "#e78284"
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = "%d.%m. <span color='#e5c890'>%H:%M</span>"
|
||||
}
|
||||
Reference in New Issue
Block a user