@@ 0,0 1,26 @@
+#!/bin/sh
+
+# The famous "get a menu of emojis to copy" script.
+
+declare options=("Ae Ä
+ae ä
+Oe Ö
+oe ö
+Ue Ü
+ue ü
+ss ß")
+
+# Get user selection via dmenu from emoji file.
+chosen=$(echo -e "$options" | dmenu -i | cut -d " " -f 2)
+
+# Exit if none chosen.
+[ -z "$chosen" ] && exit
+
+# If you run this command with an argument, it will automatically insert the
+# character. Otherwise, show a message that the emoji has been copied.
+if [ -n "$1" ]; then
+ xdotool type "$chosen"
+else
+ echo "$chosen" | tr -d '\n' | xclip -selection clipboard
+ herbe "'$chosen' copied to clipboard." &
+fi