illustratorCClinux/scripts/launcher.sh

19 lines
366 B
Bash
Raw Normal View History

2021-01-02 20:53:04 +00:00
#!/usr/bin/env bash
if [ $# -ne 0 ];then
echo "I have no parameters just run the script without arguments"
exit 1
fi
2021-01-10 09:40:49 +00:00
notify-send "Illustrator CC" "Illustrator CC launched." -i "illustratoricon"
2021-01-02 20:53:04 +00:00
SCR_PATH="aipath"
CACHE_PATH="aicache"
WINE_PREFIX="$SCR_PATH/prefix"
export WINEPREFIX="$WINE_PREFIX"
wine "$SCR_PATH/IllustratorCC17/IllustratorCC64.exe"