diff options
| author | Ja.KooLit <ejhay.games@gmail.com> | 2023-12-29 21:33:06 +0900 |
|---|---|---|
| committer | Ja.KooLit <ejhay.games@gmail.com> | 2023-12-29 21:33:06 +0900 |
| commit | 8e4bdc65ca9a2af0726c2cc1249ba87bfb70437c (patch) | |
| tree | 8dc8be503a05b79126e2f52caed84a8400e24577 /config/hypr/scripts/WaybarCava.sh | |
| parent | ce6bcd4284e00d911968354421af16d81a623d48 (diff) | |
Implementing custom waybar cava into styles and layouts
Rename waybar_cava.sh to WaybarCava.sh
remove cava module from the waybar modules bank
clean up waybar styles
Diffstat (limited to 'config/hypr/scripts/WaybarCava.sh')
| -rwxr-xr-x | config/hypr/scripts/WaybarCava.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/hypr/scripts/WaybarCava.sh b/config/hypr/scripts/WaybarCava.sh new file mode 100755 index 00000000..458a31bb --- /dev/null +++ b/config/hypr/scripts/WaybarCava.sh @@ -0,0 +1,29 @@ +# #! /bin/bash + +#----- Optimized bars animation without much CPU usage increase -------- +bar="▁▂▃▄▅▆▇█" +dict="s/;//g" + +# Calculate the length of the bar outside the loop +bar_length=${#bar} + +# Create dictionary to replace char with bar +for ((i = 0; i < bar_length; i++)); do + dict+=";s/$i/${bar:$i:1}/g" +done + +# Create cava config +config_file="/tmp/bar_cava_config" +cat >"$config_file" <<EOF +[general] +bars = 10 + +[output] +method = raw +raw_target = /dev/stdout +data_format = ascii +ascii_max_range = 7 +EOF + +# Read stdout from cava and perform substitution in a single sed command +cava -p "$config_file" | sed -u "$dict" |
