From fb3271f3afc07a3ecb92218fd422f4f75a97c200 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 31 Oct 2025 14:09:51 +0100 Subject: [PATCH] Fix phantom recording indicator Closes #2656 Co-authored-by: @davidszp --- default/waybar/indicators/screen-recording.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default/waybar/indicators/screen-recording.sh b/default/waybar/indicators/screen-recording.sh index bb6cf93c..80038e0e 100755 --- a/default/waybar/indicators/screen-recording.sh +++ b/default/waybar/indicators/screen-recording.sh @@ -1,6 +1,6 @@ #!/bin/bash -if pgrep -f "gpu-screen-recorder" >/dev/null; then +if pgrep -f "^gpu-screen-recorder" >/dev/null; then echo '{"text": "󰻂", "tooltip": "Stop recording", "class": "active"}' else echo '{"text": ""}'