blob: 258dba8615003c44f9d2a32847ad3e1603e33522 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Construct a memebot query from a list of memes and entered text.
meme=$(dmenu -l 10 -p "Which meme?" < ~/.local/bin/.memes)
echo Top text?
read top
echo Bottom text?
read bottom
echo "$top,$bottom | $meme" | xclip -i
echo Copied.
|