From 5b9309eaed79fa30b3bb789ab8b9d965187f9608 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 23 Mar 2023 21:05:22 +0100 Subject: [PATCH] Fix terminal command --- dmenu-buku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmenu-buku b/dmenu-buku index 330d686..338855a 100755 --- a/dmenu-buku +++ b/dmenu-buku @@ -6,6 +6,6 @@ [ "$1" = "open" ] && buku --nostdin -p -f5 | sed 's/\t/;/g' | column -t -s ';' | $DMENU -p "Open bookmark: " -i -l 10 | cut -d' ' -f1 | xargs -r buku --nostdin -o -[ "$1" = "edit" ] && buku --nostdin -p -f5 | sed 's/\t/;/g' | column -t -s ';' | $DMENU -p "Edit bookmark: " -i -l 10 | cut -d' ' -f1 | xargs -r $TERMINAL start -- buku -w +[ "$1" = "edit" ] && buku --nostdin -p -f5 | sed 's/\t/;/g' | column -t -s ';' | $DMENU -p "Edit bookmark: " -i -l 10 | cut -d' ' -f1 | xargs -r $TERMINAL -e buku -w [ "$1" = "delete" ] && buku --nostdin -p -f5 | sed 's/\t/;/g' | column -t -s ';' | $DMENU -p "Edit bookmark: " -i -l 10 | cut -d' ' -f1 | xargs -r -I % buku --nostdin -d % --tacit && notify-send "Deleted bookmark"