init
This commit is contained in:
81
i3/cobalt/i3status/config
Normal file
81
i3/cobalt/i3status/config
Normal file
@ -0,0 +1,81 @@
|
||||
# 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 = 1
|
||||
}
|
||||
|
||||
order += "volume master"
|
||||
order += "ipv6"
|
||||
order += "ethernet _first_"
|
||||
order += "wireless wlan0"
|
||||
order += "battery all"
|
||||
order += "disk /"
|
||||
order += "cpu_usage"
|
||||
order += "cpu_temperature package"
|
||||
order += "memory"
|
||||
order += "tztime local"
|
||||
|
||||
volume master {
|
||||
format = "vol:%volume"
|
||||
format_muted = "muted (%volume)"
|
||||
device = "default"
|
||||
mixer = "Master"
|
||||
mixer_idx = 0
|
||||
}
|
||||
|
||||
ipv6 {
|
||||
format_up = "%ip"
|
||||
format_down = ""
|
||||
}
|
||||
|
||||
ethernet _first_ {
|
||||
format_up = "%interface: %ip"
|
||||
# format_up = "%ip [%speed]"
|
||||
format_down = ""
|
||||
}
|
||||
|
||||
wireless wlan0 {
|
||||
#format_up = "W: (%quality at %essid, %bitrate / %frequency) %ip"
|
||||
format_up = "%essid:%ip"
|
||||
format_down = ""
|
||||
}
|
||||
|
||||
battery all {
|
||||
#format = "%status %percentage %remaining (%emptytime %consumption)"
|
||||
format = "%status %percentage %remaining %consumption"
|
||||
integer_battery_capacity = true
|
||||
#last_full_capacity = true
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%avail"
|
||||
prefix_type = binary
|
||||
}
|
||||
|
||||
cpu_usage {
|
||||
format = "CPU:%usage"
|
||||
}
|
||||
|
||||
cpu_temperature package {
|
||||
format = "%degrees°C"
|
||||
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon*/temp1_input"
|
||||
#path = "/sys/class/hwmon/hwmon9/temp1_input"
|
||||
max_threshold = 90
|
||||
}
|
||||
|
||||
memory {
|
||||
format = "%used %percentage_used"
|
||||
threshold_degraded = "1G"
|
||||
format_degraded = "MEMORY < %available"
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = "%m-%d-%Y %H:%M:%S"
|
||||
}
|
||||
Reference in New Issue
Block a user