diff options
Diffstat (limited to 'system/i3status.conf.symlink')
-rw-r--r-- | system/i3status.conf.symlink | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/system/i3status.conf.symlink b/system/i3status.conf.symlink deleted file mode 100644 index 67710fb..0000000 --- a/system/i3status.conf.symlink +++ /dev/null @@ -1,53 +0,0 @@ -general { - colors = true - interval = 5 - output_format = "i3bar" -} - -order += "cmd nowplaying" -order += "volume master" -order += "wireless wlan0" -order += "battery 0" -order += "cpu_usage" -order += "load" -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\\) ' | sort | cut -d' ' -f 3- | tr '\\n' '\t' | awk 'BEGIN { FS = \"\\t\" } ; { print \"♪: \" $3 \" (\" $1 \", \" $2 \")\" }'; echo -n ' '" -} - -wireless wlan0 { - format_up = "%essid: %quality, %bitrate (%ip)" - format_down = "wlan0 down" -} - -battery 0 { - format = "%status %percentage %remaining %consumption" - hide_seconds = true - status_chr = "⚇" - status_bat = "⚡" - status_full = "☻" - low_threshold = 30 - threshold_type = "percentage" -} - -cpu_usage { - format = "⚙️ %usage" -} - -load { - max_threshold = "0.7" -} - -tztime local { - format = "%a %b %-d, %I:%M %p" -} - |