diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-12-07 13:49:41 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-12-07 13:49:41 -0500 |
commit | 33e99935b0c4477f87aac470411056cb20b42a7f (patch) | |
tree | 5281d0dfc4817e50e563489c10663526f19dc306 /modules/10-i3/i3status | |
parent | 84806a9cbdc26ac05036bbdc901364789c7380cd (diff) |
Update i3 config
Diffstat (limited to 'modules/10-i3/i3status')
-rw-r--r-- | modules/10-i3/i3status/config | 85 | ||||
-rwxr-xr-x | modules/10-i3/i3status/run.sh | 73 |
2 files changed, 158 insertions, 0 deletions
diff --git a/modules/10-i3/i3status/config b/modules/10-i3/i3status/config new file mode 100644 index 0000000..0c54f33 --- /dev/null +++ b/modules/10-i3/i3status/config @@ -0,0 +1,85 @@ +# 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 { + output_format = "i3bar" + colors = true + interval = 1 +} + +#order += "ipv6" +#order += "path_exists VPN" +# order += "disk /" +order += "cpu_usage" +order += "memory" +order += "volume master" +order += "tztime holder__notif" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +order += "tztime local" + +tztime holder__notif { + format = "holder__notif" +} + +wireless _first_ { + #format_up = "W: %ip (%essid %frequency %signal %bitrate)" + format_up = "W: %ip (%essid %frequency %bitrate)" + format_down = "W: DOWN" +} + +ethernet _first_ { + format_up = "E: %ip (%speed)" + format_down = "" +} + +path_exists VPN { + path = "/proc/sys/net/ipv4/conf/tun0" +} + +battery all { + format = "%status %percentage %remaining" + format_down = "NO BAT" + path = "/sys/class/power_supply/BAT%d/uevent" + last_full_capacity = true + integer_battery_capacity = true + low_threshold = 20 +} + +disk "/" { + format = "%avail" +} + +load { + format = "[%1min %5min %15min]" +} + +cpu_usage { + format = "C: %usage" + max_threshold = 90 + degraded_threshold = 75 +} + +memory { + format = "M: %used (%percentage_used)" + threshold_degraded = "25%" + threshold_critical = "10%" +} + +volume master { + format = "V: %volume" + format_muted = "V: %volume (muted)" + device = "pulse" + #mixer = "Master" + #mixer_idx = 0 +} + +tztime local { + format = "%c" +} diff --git a/modules/10-i3/i3status/run.sh b/modules/10-i3/i3status/run.sh new file mode 100755 index 0000000..dcb5ce0 --- /dev/null +++ b/modules/10-i3/i3status/run.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +# This i3status wrapper allows to add custom information in any position of the statusline +# It was developed for i3bar (JSON format) + +# The idea is to define "holder" modules in i3status config and then replace them + +# In order to make this example work you need to add +# order += "tztime holder__hey_man" +# and +# tztime holder__hey_man { +# format = "holder__hey_man" +# } +# in i3staus config + +# Don't forget that i3status config should contain: +# general { +# output_format = i3bar +# } +# +# and i3 config should contain: +# bar { +# status_command exec /path/to/this/script.sh +# } + +# Make sure jq is installed +# That's it + +# You can easily add multiple custom modules using additional "holders" + +function update_holder { + local instance="$1" + local replacement="$2" + echo "$json_array" | jq --argjson arg_j "$replacement" "(.[] | (select(.instance==\"$instance\"))) |= \$arg_j" +} + +function remove_holder { + local instance="$1" + echo "$json_array" | jq "del(.[] | (select(.instance==\"$instance\")))" +} + +function hey_man { + local rand_val=$((RANDOM % 3)) + if [ $rand_val == 1 ] ; then + local json='{ "full_text": "Hey Man!", "color": "#00FF00" }' + json_array=$(update_holder holder__hey_man "$json") + elif [ $rand_val == 0 ] ; then + local json='{ "full_text": "Hey Man!", "color": "#FF0000" }' + json_array=$(update_holder holder__hey_man "$json") + else + json_array=$(remove_holder holder__hey_man) + fi +} + +function notif { + if [[ "$(dunstctl is-paused)" == "true" ]]; then + local json='{ "full_text": "N: paused", "color": "#FF0000" }' + json_array=$(update_holder holder__notif "$json") + else + local json='{ "full_text": "N: active" }' + json_array=$(update_holder holder__notif "$json") + fi +} + +_pre="" +i3status | (read line; echo "$line"; read line; echo "$line"; while true +do + read line + json_array="$(echo $line | sed -e 's/^,//')" + notif + echo "$_pre$json_array" + _pre="," +done) |