blob: 8d1d3b6962c3e5902bed277e50313557fc1055eb (
plain)
1
2
3
4
|
#!/bin/bash
#A menu that selects emojis/glyphs and copies them to the clipboard
grep -vi "^##" "$HOME"/.config/misc/glyphsrc | dmenu -i -l 20 | awk '{print $1}' | xargs -I {} printf {} | xclip -selection clipboard
|