-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup
executable file
·25 lines (21 loc) · 1 KB
/
setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# SetupHelper provides a set of utilities used by other packages to streamline installing and removing packages
# and facilitates reinstallation following a Venus OS update
# package setup scripts can be run from the command line for manual installation and uninstallation,
# and in some cases inputing configuration options
#
# SetupHelper includes PackageManager which manages package updates from GitHub
# as well as package installation an uninstallation from the main GUI
#
# this setup script does NOT use version-dependent file sets
# rather it makes modifications as part of this script
# so that updates are not required when Venus OS versions are added
# tell CommonResources to:
# prompt for install/uninstall
# auto install or auto uninstall
# then exit
# CommonResources will NOT return here !
standardPromptAndActions='yes'
#### following line incorporates helper resources into this script
source "/data/SetupHelper/HelperResources/IncludeHelpers"
#### end of lines to include helper resources