From 50c45cbbf49e504e1294d8b10d69ad3111913fb4 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 19 May 2022 18:22:31 +0200 Subject: [PATCH] [Bin] Fix rofi-emoji --- org/config/bin.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/config/bin.org b/org/config/bin.org index c646675..2dfab19 100644 --- a/org/config/bin.org +++ b/org/config/bin.org @@ -1255,7 +1255,7 @@ grep -v "#" ~/.config/emoji.txt | rofi -dmenu -p "Select emoji" -i | \ Also, let’s send a notification telling the user the emoji has been copied! #+BEGIN_SRC bash EMOJI=$(xclip -o -selection clipboard | tr -d '\n') -test -z "$EMOJI" && notify-send "No emoji copied -u low && exit" +test -z "$EMOJI" && notify-send "No emoji copied" -u low && exit EMOJI="$EMOJI copied to clipboard" notify-send -u low "$EMOJI" #+END_SRC