From e2e55dfa73946e8450cb441586f604ab937a1738 Mon Sep 17 00:00:00 2001 From: tristan Date: Sat, 15 Apr 2023 19:18:10 +0100 Subject: [PATCH] fix bwmenu softlock --- system/global/scripts/bwmenu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/global/scripts/bwmenu b/system/global/scripts/bwmenu index 2cf37e1..6200fe9 100755 --- a/system/global/scripts/bwmenu +++ b/system/global/scripts/bwmenu @@ -1,3 +1,4 @@ #!/bin/sh -rbw list | wofi --show dmenu | xargs -I_ rbw get _ | wl-copy +items="$(rbw list)" +echo "$items" | wofi --show dmenu | xargs -I_ rbw get _ | wl-copy