dotfiles/.scripts/dmenu_custom.sh

16 lines
272 B
Bash
Raw Normal View History

2023-02-03 12:06:09 +01:00
#!/bin/bash
PICK=$(echo -e "mat\nfiz\nplan" | dmenu)
case $PICK in
"mat")
evince ~/Documents/wybrane_wzory_matematyczne_EM2023.pdf
;;
"fiz")
evince ~/Documents/wybrane_wzory_stale_fizykochemiczne_EM2023.pdf
;;
"plan")
evince ~/Documents/plan.pdf
;;
esac