Move wallpaper and emoji support to this repository.

This commit is contained in:
Bartek Stalewski 2023-02-16 16:03:59 +01:00
parent 8ea59c3385
commit 2b33915c76
5 changed files with 3090 additions and 4 deletions

View file

@ -1,11 +1,11 @@
#!/bin/sh
chosen=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -l 30 -i | sed "s/ .*//")
chosen=$(cut -d ';' -f1 $XDG_CONFIG_HOME/qtile/chars/* | dmenu -l 30 -i | sed "s/ .*//")
[ -z "$chosen" ] && exit
if [ -n "$1" ]; then
xdotool type "$chosen"
else
printf "$chosen" | xclip -rmlastnl
printf "$chosen" | wl-copy -n
notify-send -t 2000 "'$chosen' copied to clipboard" &
fi