86 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| general {
 | |
| 	colors = true
 | |
| 
 | |
| 	# Good is S_cyan
 | |
| 	color_good = "#2aa198"
 | |
| 
 | |
| 	# Degraded is S_green
 | |
| 	color_degraded = "#859900"
 | |
| 
 | |
| 	# Bad is S_red
 | |
| 	color_bad ="#dc322f"
 | |
| 
 | |
| 	interval = 5
 | |
| }
 | |
| 
 | |
| order += "path_exists VPN"
 | |
| order += "wireless wlan0"
 | |
| order += "ethernet eth0"
 | |
| order += "battery 0"
 | |
| # order += "cpu_temperature 0"
 | |
| # order += "cpu_temperature 1"
 | |
| order += "disk /"
 | |
| order += "memory"
 | |
| order += "load"
 | |
| order += "time"
 | |
| 
 | |
| wireless wlan0 {
 | |
| 	format_up = "W: (%quality/%bitrate) on %essid"
 | |
| 	format_quality = "%d%s"
 | |
| 	format_down = "W: ☠"
 | |
| }
 | |
| 
 | |
| ethernet eth0 {
 | |
| 	# if you use %speed, i3status requires root privileges
 | |
| 	format_up = "E: ✔ (%speed)"
 | |
| 	format_down = "E: ☠"
 | |
| }
 | |
| 
 | |
| battery 0 {
 | |
| 	status_full = "✔"
 | |
| 	status_bat = "🔋"
 | |
| 	status_chr = "⚡"
 | |
| 	format = "B: %status %percentage %remaining"
 | |
| 	path = "/sys/class/power_supply/BAT0/uevent"
 | |
| 	format_down = ""
 | |
| }
 | |
| 
 | |
| battery 1 {
 | |
| 	status_full = "✔"
 | |
| 	status_bat = "🔋"
 | |
| 	status_chr = "⚡"
 | |
| 	format = "B1: %status %percentage %remaining"
 | |
| 	path = "/sys/class/power_supply/CMB2/uevent"
 | |
| 	format_down = ""
 | |
| }
 | |
| 
 | |
| path_exists VPN {
 | |
| 	path = "/proc/sys/net/ipv4/conf/vpn0"
 | |
| }
 | |
| 
 | |
| time {
 | |
| 	format = "%F %T %Z"
 | |
| }
 | |
| 
 | |
| load {
 | |
| 	format = "L: %1min %5min %15min"
 | |
| }
 | |
| 
 | |
| cpu_temperature 0 {
 | |
| 	format = "T1: %degrees °C"
 | |
| 	path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp2_input"
 | |
| }
 | |
| 
 | |
| cpu_temperature 1 {
 | |
| 	format = "T2: %degrees °C"
 | |
| 	path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp4_input"
 | |
| }
 | |
| 
 | |
| disk "/" {
 | |
| 	format = "D: U%percentage_used A%percentage_avail"
 | |
| }
 | |
| 
 | |
| memory {
 | |
| 	format = "M: U%percentage_used S%percentage_shared F%percentage_free"
 | |
| 	memory_used_method = "classical"
 | |
| }
 |