Switch to qtile.

This commit is contained in:
Bartek Stalewski 2022-07-29 15:49:27 +02:00
parent 072f0ed604
commit 29788d6fec
75 changed files with 214 additions and 1 deletions

11
_desktop/_scripts/dmenu-emoji Executable file
View file

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