6 lines
230 B
Plaintext
6 lines
230 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cat ~/.config/Scripts/emojis.txt | dmenu -i -p " Emojis " | awk '{print $1}' | tr -d '\n' | xclip -selection clipboard
|
||
|
|
||
|
pgrep -x dunst >/dev/null && notify-send -t 950 "$(xclip -o -selection clipboard) Copiado "
|