From 083aa183eb846105cad65b1ed2aa76b8c5e789d2 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 12 Jun 2023 14:54:54 -0400 Subject: [PATCH] clipedit.sh: use -c in st invocation --- src/.local/bin/deskutils/clipedit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.local/bin/deskutils/clipedit.sh b/src/.local/bin/deskutils/clipedit.sh index 6570fbf..f00d6f6 100755 --- a/src/.local/bin/deskutils/clipedit.sh +++ b/src/.local/bin/deskutils/clipedit.sh @@ -4,7 +4,7 @@ TMPFILE="$(mktemp)" #xsel -b > "$TMPFILE" -st -g 60x8+0+800 -n popup-bottom-center \ +st -g 60x8+0+800 -c popup-bottom-center \ -e nvim -c "set binary noeol" -c "startinsert" "$TMPFILE" -c "highlight Normal ctermbg=016" cat "$TMPFILE" | xsel -ib rm "$TMPFILE"