diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2022-09-21 04:14:51 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2022-09-21 04:14:51 +0300 |
commit | 65e3c9e636ac0780fe46d27292e0abd37aa89b02 (patch) | |
tree | 39dcfaaac94d0e8172c3cb3cc45d13affaa8edfb | |
parent | 4178ab5f05ec62cc08062111ed5627721de26ac2 (diff) |
emoji script
-rwxr-xr-x | emoji | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/bin/sh + +emoji=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -i -c -bw 3 -l 10 -p "Emoji:" | sed "s/ .*//" | tr -d '\n') + +[ -z "$emoji" ] && exit + +printf "$emoji" | xclip -selection clipboard +notify-send "'$emoji' copied to clipboard" |