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