From 4537bce2c2429ebfe38f91a2f39609841e08c004 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 23 Mar 2023 22:06:10 -0400 Subject: [PATCH] check scripts to avoid rerunning remapd --- .config/x11/xprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/x11/xprofile b/.config/x11/xprofile index 1d63fd2..d6b88c5 100755 --- a/.config/x11/xprofile +++ b/.config/x11/xprofile @@ -10,7 +10,7 @@ setbg & # set the background with the `setbg` script autostart="mpd xcompmgr dunst unclutter pipewire remapd" for program in $autostart; do - pidof -s "$program" || "$program" & + pidof -sx "$program" || "$program" & done >/dev/null 2>&1 # Ensure that xrdb has finished running before moving on to start the WM/DE.