From 424f97ea9402aa7e98b7851e432b6ae48e79d729 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 12 Jun 2025 10:56:44 +0300 Subject: Fix fprun Syntax of fp has changed so fprun should comply too. Also now it uses $PATH rather than just /bin --- fprun | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fprun b/fprun index 6893fd3..9873405 100755 --- a/fprun +++ b/fprun @@ -7,5 +7,6 @@ # # [1] https://tools.suckless.org/dmenu/ -PROG="`fp /bin 10`" -nohup "$PROG" > /dev/null 2>&1 & +paths=`printf '%s' "$PATH" | tr ':' ' '` +prog="`fp 10 $paths`" +nohup "$prog" > /dev/null 2>&1 & -- cgit 1.4.1