dotfiles/.local/scripts/dmenu_specialchars
2025-02-01 00:22:29 -05:00

7 lines
191 B
Bash
Executable file

#!/bin/sh
sel="$(wofi -S dmenu -p "character" -k /dev/null < "$HOME/.local/scripts/specialchars_list" )"
if [ "$sel" != "" ]; then
echo "$sel" | awk '{print $1}' | tr -d '\n' | wtype -
fi