blob: ce1f1ffb5fcf0b6e40624e5b9540b2279b6e9eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/bash
export launchTarget="/usr/bin/prismlauncher $@"
export _portableConfig="org.prismlauncher.PrismLauncher"
if [[ "$@" = "--actions opendir" ]]; then
portable --actions opendir
elif [[ "$@" = "--actions share-files" ]]; then
portable --actions share-files
elif [[ "$@" = "--actions quit" ]]; then
portable --actions quit
else
portable
fi
|