From a94ee62680c284a5fa86ac1db9660e344f41bd2e Mon Sep 17 00:00:00 2001 From: RealAestan <15686636+RealAestan@users.noreply.github.com> Date: Mon, 3 Apr 2023 16:07:54 +0200 Subject: [PATCH] dmenuunicode: don't use variables in the printf format string (#1284) It works but the good practice is to use `printf "..%s.." "$foo"` see https://www.shellcheck.net/wiki/SC2059 --- .local/bin/dmenuunicode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/dmenuunicode b/.local/bin/dmenuunicode index 704c809..dd12bc3 100755 --- a/.local/bin/dmenuunicode +++ b/.local/bin/dmenuunicode @@ -13,6 +13,6 @@ chosen=$(cut -d ';' -f1 ~/.local/share/larbs/chars/* | dmenu -i -l 30 | sed "s/ if [ -n "$1" ]; then xdotool type "$chosen" else - printf "$chosen" | xclip -selection clipboard + printf "%s" "$chosen" | xclip -selection clipboard notify-send "'$chosen' copied to clipboard." & fi