blob: 60fff6b46154da680fe9e5b781c951d6521067d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# generate random tokipona phrase(see nimisewi for details),
# copy it to the clipboard and send notification with it
_nimi_sewi=$(nimisewi)
echo $_nimi_sewi | xclip -sel clipboard
notify-send -a nimi_sewi -t 2000 "nimi sewi" "$_nimi_sewi"
|