lets
This commit is contained in:
commit
55c06610dd
17 changed files with 8824 additions and 0 deletions
97
bigg/i3status/config
Normal file
97
bigg/i3status/config
Normal file
|
@ -0,0 +1,97 @@
|
|||
# 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 {
|
||||
output_format = "i3bar"
|
||||
colors = true
|
||||
color_good = "#657B83"
|
||||
color_degraded = "#354044"
|
||||
color_bad = "#000000"
|
||||
interval = 5
|
||||
separator = " "
|
||||
}
|
||||
|
||||
# order += "ipv6"
|
||||
# order += "wireless _first_"
|
||||
# order += "ethernet _first_"
|
||||
order += "disk /"
|
||||
order += "disk /home"
|
||||
order += "disk /storage"
|
||||
# order += "load"
|
||||
# order += "memory"
|
||||
# order += "read_file BRIGHTNESS"
|
||||
# order += "volume master"
|
||||
# order += "battery 0"
|
||||
# order += "tztime local"
|
||||
|
||||
wireless _first_ {
|
||||
format_up = "%quality"
|
||||
format_down = ""
|
||||
}
|
||||
|
||||
ethernet _first_ {
|
||||
format_up = "%ip (%speed)"
|
||||
format_down = ""
|
||||
}
|
||||
|
||||
battery all {
|
||||
format = " %status %percentage %remaining"
|
||||
}
|
||||
|
||||
battery 0 {
|
||||
format = "%status %percentage %remaining %emptytime"
|
||||
format_down = "No battery"
|
||||
status_chr = ""
|
||||
status_bat = ""
|
||||
status_unk = ""
|
||||
status_full = ""
|
||||
path = "/sys/class/power_supply/BAT%d/uevent"
|
||||
low_threshold = 15
|
||||
threshold_type = "percentage"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = " / %used/%total "
|
||||
}
|
||||
|
||||
disk "/home" {
|
||||
format = " /home %used/%total "
|
||||
}
|
||||
|
||||
disk "/storage" {
|
||||
format = " /storage %used/%total "
|
||||
}
|
||||
|
||||
load {
|
||||
format = " %1min"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = " %used/%total"
|
||||
threshold_degraded = "1G"
|
||||
format_degraded = "MEMORY < %available"
|
||||
}
|
||||
|
||||
volume master {
|
||||
format = " %volume"
|
||||
format_muted = "%volume"
|
||||
device = "default"
|
||||
mixer = "Master"
|
||||
mixer_idx = 1
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = " %a %d/%m %H:%M "
|
||||
}
|
||||
|
||||
|
||||
read_file BRIGHTNESS {
|
||||
format = "BRI %content"
|
||||
path = "/home/username/.config/brightness"
|
||||
max_characters = 5
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue