initial commit of i3 configuration
This commit is contained in:
commit
950e9452ba
2 changed files with 243 additions and 0 deletions
55
.i3/i3status
Normal file
55
.i3/i3status
Normal file
|
@ -0,0 +1,55 @@
|
|||
general {
|
||||
colors = true
|
||||
interval = 1
|
||||
}
|
||||
|
||||
order += "ipv6"
|
||||
order += "ethernet eth0"
|
||||
order += "wireless wlan1"
|
||||
order += "battery 0"
|
||||
order += "cpu_usage"
|
||||
order += "load"
|
||||
order += "cpu_temperature 0"
|
||||
order += "volume master"
|
||||
order += "time"
|
||||
|
||||
ethernet eth0 {
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
}
|
||||
|
||||
wireless wlan1 {
|
||||
format_up = "W: %quality@%ip"
|
||||
format_down = "W: down"
|
||||
}
|
||||
|
||||
battery 0 {
|
||||
last_full_capacity = true
|
||||
format = "%status %percentage %remaining %consumption" ## %emptytime"
|
||||
path = "/sys/class/power_supply/BAT%d/uevent"
|
||||
low_threshold = 20
|
||||
}
|
||||
|
||||
time {
|
||||
format = "%Y-%m-%d %H:%M:%S"
|
||||
}
|
||||
|
||||
cpu_temperature 0 {
|
||||
format = "%degrees °C"
|
||||
path = "/sys/class/thermal/thermal_zone0/temp"
|
||||
}
|
||||
|
||||
cpu_usage {
|
||||
format = "C: %usage"
|
||||
}
|
||||
|
||||
load {
|
||||
format = "%1min %5min %15min"
|
||||
}
|
||||
|
||||
volume master {
|
||||
format = "♪: %volume"
|
||||
device = "default"
|
||||
mixer = "Master"
|
||||
mixer_idx = 0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue