Archived
1
0

Initial commit

This commit is contained in:
2017-04-06 11:24:46 -05:00
commit f3583b3579
5 changed files with 311 additions and 0 deletions

50
i3status Normal file
View File

@@ -0,0 +1,50 @@
general {
output_format = "i3bar"
colors = true
interval = 5
}
order += "color uname"
order += "color uptime"
order += "cpu_temperature 1"
order += "cpu_temperature 0"
order += "load"
order += "tztime local"
color uname {
color = "#444444"
uname {
format = "{release}"
cache_timeout = 86400
}
}
color uptime {
color = "#4682B4"
uptime {}
}
battery 0 {
format = "%status %percentage"
integer_battery_capacity = true
low_threshold = 20
threshold_type = percentage
}
cpu_temperature 0 {
format = "C: %degrees °C"
path = "/sys/class/hwmon/hwmon3/temp1_input"
}
cpu_temperature 1 {
format = "G: %degrees °C"
path = "/sys/class/hwmon/hwmon0/temp1_input"
}
load {
format = "%1min"
}
tztime local {
format = "%a %d %b %Y %H:%M:%S"
}