@@ -52,11 +52,14 @@ Options:
52
52
\$ HOME/.config/Logos_on_Linux/Logos_on_Linux.conf
53
53
Optionally can accept a config file provided by
54
54
the user.
55
+ -b --custom-binary-path Set a custom path to search for wine binaries
56
+ during the install.
55
57
-r --regenerate-scripts Regenerates the Logos.sh and controlPanel.sh
56
58
scripts using the config file.
57
59
-F --skip-fonts Skips installing corefonts and tahoma.
58
60
-f --force-root Sets LOGOS_FORCE_ROOT to true, which permits
59
61
the root user to run the script.
62
+ -k --make-skel Make a skeleton install only.
60
63
EOF
61
64
}
62
65
@@ -446,20 +449,6 @@ make_skel() {
446
449
verbose && echo " skel64 done!"
447
450
}
448
451
449
- # TODO: Move this to a CLI optarg.
450
-
451
- # #======= Parsing =============
452
- # case "${1}" in
453
- # "skel64")
454
- # export WINE_EXE="wine64"
455
- # make_skel "${WINE_EXE}" "none.AppImage"
456
- # rm -rf "${WORKDIR}"
457
- # exit 0
458
- # ;;
459
- # *)
460
- # verbose && echo "No arguments parsed."
461
- # esac
462
-
463
452
# # BEGIN CHECK DEPENDENCIES FUNCTIONS
464
453
check_commands () {
465
454
for cmd in " $@ " ; do
@@ -644,7 +633,7 @@ checkPath() {
644
633
645
634
createWineBinaryList () {
646
635
# TODO: Make optarg to add custom path to this array.
647
- WINEBIN_PATH_ARRAY=( " /usr/local/bin" " $HOME /bin" " $HOME /PlayOnLinux/wine/linux-amd64/*/bin" " $HOME /.steam/steam/steamapps/common/Proton - Experimental/files/bin" )
636
+ WINEBIN_PATH_ARRAY=( " /usr/local/bin" " $HOME /bin" " $HOME /PlayOnLinux/wine/linux-amd64/*/bin" " $HOME /.steam/steam/steamapps/common/Proton - Experimental/files/bin" " ${CUSTOMBINPATH} " )
648
637
649
638
# Temporarily modify PATH for additional WINE64 binaries.
650
639
for p in " ${WINEBIN_PATH_ARRAY[@]} " ; do
@@ -796,6 +785,11 @@ checkExistingInstall() {
796
785
}
797
786
798
787
beginInstall () {
788
+ if [ " ${SKEL} " -eq " 1" ]; then
789
+ verbose && echo " Making a skeleton install of the project only. Exiting after completion."
790
+ make_skel " none.AppImage"
791
+ exit 0;
792
+ fi
799
793
if [ -n " ${WINEBIN_CODE} " ]; then
800
794
case " ${WINEBIN_CODE} " in
801
795
" System" |" Proton" |" PlayOnLinux" |" Custom" )
@@ -1216,8 +1210,6 @@ postInstall() {
1216
1210
1217
1211
main () {
1218
1212
echo " $LOGOS_SCRIPT_TITLE , $LOGOS_SCRIPT_VERSION by $LOGOS_SCRIPT_AUTHOR ."
1219
- die-if-root;
1220
- getDialog;
1221
1213
debug && logos_info " Debug mode enabled."
1222
1214
1223
1215
# BEGIN PREPARATION
@@ -1252,6 +1244,11 @@ main() {
1252
1244
fi
1253
1245
}
1254
1246
1247
+ # BEGIN SCRIPT
1248
+
1249
+ die-if-root;
1250
+ getDialog;
1251
+
1255
1252
# BEGIN OPTARGS
1256
1253
RESET_OPTARGS=true
1257
1254
for arg in " $@ "
@@ -1269,10 +1266,12 @@ do
1269
1266
--regenerate-scripts) set -- " $@ " -r ;;
1270
1267
--force-root) set -- " $@ " -f ;;
1271
1268
--debug) set -- " $@ " -D ;;
1269
+ --make-skel) set -- " $@ " -k ;;
1270
+ --custom-binary-path) set -- " $@ " -b ;;
1272
1271
* ) set -- " $@ " " $arg " ;;
1273
1272
esac
1274
1273
done
1275
- OPTSTRING=' :hvVcDfFr ' # Available options
1274
+ OPTSTRING=' :hvVcDfFrkb: ' # Available options
1276
1275
1277
1276
# First loop: set variable options which may affect other options
1278
1277
while getopts " $OPTSTRING " opt; do
@@ -1310,6 +1309,13 @@ while getopts "$OPTSTRING" opt; do
1310
1309
r) export REGENERATE=" 1" ; ;;
1311
1310
D) export DEBUG=" true" ;
1312
1311
WINEDEBUG=" " ; ;;
1312
+ k) export SKEL=" 1" ; ;;
1313
+ b) CUSTOMBINPATH=" $2 " ;
1314
+ if [ -d " $CUSTOMBINPATH " ]; then
1315
+ export CUSTOMBINPATH;
1316
+ else
1317
+ logos_info " $LOGOS_SCRIPT_TITLE : User supplied path: \" ${OPTARG} \" . Custom binary path does not exist." >&2 && usage >&2 && exit
1318
+ fi ; shift 2 ;;
1313
1319
\? ) logos_info " $LOGOS_SCRIPT_TITLE : -$OPTARG : undefined option." >&2 && usage >&2 && exit ;;
1314
1320
:) logos_info " $LOGOS_SCRIPT_TITLE : -$OPTARG : missing argument." >&2 && usage >&2 && exit ;;
1315
1321
esac
0 commit comments