Files
opalfiles/.local/bin/emoji_insert.sh
2025-08-16 11:35:38 -07:00

12 lines
258 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
EMOJIS_DIR="$HOME/.local/share/chars"
LAUNCHER="$HOME/.config/rofi/launchers.d/rofi_launcher_emoji.sh"
sel="$(cat "$EMOJIS_DIR"/emojis |
"$LAUNCHER" |
awk '{print $1}')"
[ -n "${sel:-}" ] && exec wtype "$sel"