yad examples
1. 3. 2018Simple launcher
#!/bin/bash
yad --undecorated --center --skip-taskbar \
--title="launch" --button="thunar" --button="geany" --button="urxvt"
case $? in
0)thunar
;;
1)geany
;;
2)urxvt
;;
esac