summaryrefslogtreecommitdiff
path: root/i3status.conf
diff options
context:
space:
mode:
Diffstat (limited to 'i3status.conf')
-rw-r--r--i3status.conf57
1 files changed, 57 insertions, 0 deletions
diff --git a/i3status.conf b/i3status.conf
new file mode 100644
index 00000000..571c5d0f
--- /dev/null
+++ b/i3status.conf
@@ -0,0 +1,57 @@
+# See i3status(1).
+
+general {
+ colors = true
+ # A short interval is fine as i3bar suspends the i3status process
+ # when the bar isn't being shown.
+ interval = 1
+}
+
+order += "wireless wlp3s0"
+wireless wlp3s0 {
+ format_up = "W (%quality @ %essid, %bitrate / %frequency) %ip"
+ format_down = "W down"
+ format_quality = "%03d%s"
+}
+order += "ethernet enp2s0f1"
+ethernet enp2s0f1 {
+ format_up = "E (%speed) %ip"
+ format_down = "E down"
+}
+
+order += "battery 0"
+battery 0 {
+ format = "%status %percentage %remaining %emptytime"
+ format_down = "no battery"
+ status_chr = "charging"
+ status_bat = "battery"
+ status_unk = "unknown"
+ status_full = "full"
+ path = "/sys/class/power_supply/BAT%d/uevent"
+ low_threshold = 25
+}
+
+order += "cpu_usage"
+
+order += "cpu_temperature 0"
+cpu_temperature 0 {
+ format = "%degrees °C"
+}
+
+order += "memory"
+memory {
+ format = "%used"
+ memory_used_method = "classical" # total memory - free - buffers - cache
+}
+
+order += "volume master"
+volume master {
+ format = "♪ %volume"
+ format_muted = "♪ ∅"
+ device = "pulse"
+}
+
+order += "tztime local"
+tztime local {
+ format = "%a %-d %b, %H:%M"
+}