From 07df6754debd45ccb61bcaae9eda7ab4cdf57d02 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 13 Aug 2026 23:46:58 +0200 Subject: [PATCH] fix: waybar osd call Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- home/system/waybar/scripts.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/system/waybar/scripts.nix b/home/system/waybar/scripts.nix index 9e5e2026..8049ca12 100644 --- a/home/system/waybar/scripts.nix +++ b/home/system/waybar/scripts.nix @@ -7,7 +7,7 @@ runtimeInputs = with pkgs; [procps coreutils]; text = '' printf '%s' "$1" > /tmp/waybar-osd - pkill -x -RTMIN+8 waybar 2>/dev/null || true + pkill -f -RTMIN+8 '^waybar$' 2>/dev/null || true ''; };