dotfiles/.scripts/dmenu_custom.sh
2023-02-03 12:06:09 +01:00

16 lines
272 B
Bash
Executable File

#!/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