diff options
Diffstat (limited to 'system')
| -rw-r--r-- | system/i3status.conf.symlink | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/system/i3status.conf.symlink b/system/i3status.conf.symlink index 211b6e8..37406ea 100644 --- a/system/i3status.conf.symlink +++ b/system/i3status.conf.symlink @@ -1,6 +1,7 @@  general {      colors = true      interval = 5 +    output_format = "i3bar"  }  order += "cmd nowplaying" @@ -8,6 +9,7 @@ order += "volume master"  order += "wireless wlan0"  order += "battery 0"  order += "cpu_usage" +order += "load"  order += "tztime local"  volume master { @@ -28,17 +30,23 @@ wireless wlan0 {  }  battery 0 { -    format = "%status %percentage %remaining" +    format = "%status %percentage %remaining %consumption" +    hide_seconds = true      status_chr = "⚇"      status_bat = "⚡"      status_full = "☻" -    low_threshold = 20 +    low_threshold = 30 +    threshold_type = "percentage"  }  cpu_usage {      format = "⚙️ %usage"  } +load { +    max_threshold = "0.7" +} +  tztime local {      format = "%Y-%m-%d %H:%M:%S"  } | 
