diff options
author | davidovski <david@davidovski.xyz> | 2021-10-09 22:20:41 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-09 22:20:41 +0100 |
commit | 01ced0b7ce47d279789efb2dc70d1cd009ac56ad (patch) | |
tree | 6ece604b8ae3476d2d70c9c9d42f86fe607990da /scripts/.scripts/dmenuemoji |
initial commit
Diffstat (limited to 'scripts/.scripts/dmenuemoji')
-rwxr-xr-x | scripts/.scripts/dmenuemoji | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/.scripts/dmenuemoji b/scripts/.scripts/dmenuemoji new file mode 100755 index 0000000..090e8e3 --- /dev/null +++ b/scripts/.scripts/dmenuemoji @@ -0,0 +1,23 @@ +#!/bin/bash + +chosen=$(dmenu -i -l 20 < ~/.local/share/emoji | sed "s/ .*//") + +[ "$chosen" != "" ] || exit + +# If you run this command with an argument, it will automatically insert the character. +echo "$chosen" | xclip -selection clipboard +if [ -n "$1" ]; then + WINDOW=$(xdotool getactivewindow getwindowname) + if [[ "$WINDOW" =~ .*"$SUB".* ]]; then + xdotool key "ctrl+v" + else + xdotool key Shift+Insert + fi +# xdotool type --delay 1 $chosen + +# VAR=$(xclip -o) + +# xdotool type $chosen +else + notify-send "'$chosen' copied to clipboard." & +fi |