diff options
| author | Luka Momčilović <l.momcilovic61@gmail.com> | 2024-01-08 21:35:34 +0100 |
|---|---|---|
| committer | Luka Momčilović <l.momcilovic61@gmail.com> | 2024-01-08 21:35:34 +0100 |
| commit | ded28ab85a197efbdea865d250593cc402e01f19 (patch) | |
| tree | 2016a9ffb82e1ca9f1da31547c83e7978ce0c821 /config | |
| parent | 2c0f9603b9c4d392f1fc46dd16fdffdc4c1fa466 (diff) | |
fix(waybar): fix cava creating multiple instances
WaybarCava was creating a new instance of cava every time it was
executed. This happens when waybar is restarted/wallpaper is changed
Fixed by killing cava process referencing the same config
Fix: #131
Diffstat (limited to 'config')
| -rwxr-xr-x | config/hypr/scripts/WaybarCava.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/hypr/scripts/WaybarCava.sh b/config/hypr/scripts/WaybarCava.sh index 77fce82a..711f4c62 100755 --- a/config/hypr/scripts/WaybarCava.sh +++ b/config/hypr/scripts/WaybarCava.sh @@ -28,5 +28,8 @@ data_format = ascii ascii_max_range = 7 EOF +# Kill cava if it's already running +pkill -f "cava -p $config_file" + # Read stdout from cava and perform substitution in a single sed command cava -p "$config_file" | sed -u "$dict" |
