aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/i3status.conf.symlink45
1 files changed, 45 insertions, 0 deletions
diff --git a/system/i3status.conf.symlink b/system/i3status.conf.symlink
new file mode 100644
index 0000000..c011019
--- /dev/null
+++ b/system/i3status.conf.symlink
@@ -0,0 +1,45 @@
+general {
+ colors = true
+ interval = 5
+}
+
+order += "cmd nowplaying"
+order += "volume master"
+order += "wireless wlan0"
+order += "battery 0"
+order += "cpu_usage"
+order += "tztime local"
+
+volume master {
+ format = "♪: %volume"
+ format_muted = "♪: muted (%volume)"
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}
+
+cmd nowplaying {
+ cmd = "cmus-remote -Q | grep '^tag \\(artist\\|album\\|title\\) ' | cut -d' ' -f 3- | tr '\\n' '\t' | awk 'BEGIN { FS = \"\\t\" } ; { print \"♪: \" $3 \" (\" $2 \", \" $1 \")\" }'; echo -n ' '"
+}
+
+wireless wlan0 {
+ format_up = "%essid: %quality, %bitrate (%ip)"
+ format_down = "wlan0 down"
+}
+
+battery 0 {
+ format = "%status %percentage %remaining %emptytime"
+ status_chr = "⚇"
+ status_bat = "⚡"
+ status_full = "☻"
+ low_threshold = 20
+}
+
+cpu_usage {
+ format = "⚙️ %usage"
+}
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}
+