aboutsummaryrefslogtreecommitdiff
path: root/i3/.config/i3status/config
diff options
context:
space:
mode:
Diffstat (limited to 'i3/.config/i3status/config')
-rw-r--r--i3/.config/i3status/config58
1 files changed, 58 insertions, 0 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config
new file mode 100644
index 0000000..f05bdc1
--- /dev/null
+++ b/i3/.config/i3status/config
@@ -0,0 +1,58 @@
+# 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 {
+ colors = true
+ interval = 5
+}
+
+order += "wireless _first_"
+order += "battery all"
+order += "volume master"
+order += "disk /"
+order += "load"
+order += "memory"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = " %ip"
+ format_down = ""
+}
+
+battery all {
+ format = "%status %percentage"
+ status_full = ""
+ status_bat = ""
+ status_chr = ""
+ integer_battery_capacity = true
+}
+
+volume master {
+ format = " %volume"
+ format_muted = ""
+ device = "pulse"
+}
+
+disk "/" {
+ format = " %avail"
+}
+
+load {
+ format = " %1min\%"
+}
+
+memory {
+ format = " %used"
+ threshold_degraded = "1G"
+ format_degraded = " < %available"
+}
+
+tztime local {
+ format = " %d %H:%M"
+ timezone = "Asia/Shanghai"
+}