12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/env bash
- # Colors:
- # Materia Manjaro
- nf='#09dbc9'
- nb='#222b2e'
- sf='#dbdcd5'
- sb='#009185'
- fn='Ubuntu-16:normal'
- # Gruvbox
- # nf='#fea63c'
- # nb='#282828'
- # # sf='#dbdcd5'
- # sb='#d79921'
- # fn='Sarasa Mono SC Nerd-17:normal'
- DMENU="dmenu -i -l 10 -nf ${nf} -nb ${nb} -sf ${sf} -sb ${sb} -fn ${fn} -p"
- # Get user selection via dmenu from emoji file.
- # chosen=$(cut -d ';' -f1 ~/.myScripts/dmscripts/transcription.txt | dmenu -l 20 -nf ${nf} -nb ${nb} -sf ${sf} -sb ${sb} -fn ${fn} -p 'Choose a symbol:' | awk '{print $1}')
- chosen=$(cut -d ';' -f1 ~/.myScripts/dmscripts/transcription.txt | ${DMENU} 'Choose a symbol:' | awk '{print $1}')
- # 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
- printf "$chosen" | xclip -selection clipboard
- notify-send "'$chosen' copied to clipboard." &
- fi
|