-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefaults.sh
executable file
·27 lines (24 loc) · 1.17 KB
/
defaults.sh
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
26
27
#!/bin/bash
# The 'SUPPORTED_DISTROS' configuration should be left as a bash array and its elements
# should be strings containing STRICTLY only letters, numbers and the underscore _ character.
#
# No spaces, dashes or other characters are allowed inside distro names except underscore!
#
# If you need to use multiple words, you can use the camel case style or an underscore:
# => camelCase: "popOS" "linuxMint" "openSUSE"
# => underscore: "pop_OS" "linux_mint" "open_SUSE"
#
# The corresponding distro folder names inside the [ <project_root>/private/scripts ] folder
# must match EXACTLY the SUPPORTED_DISTROS entries.
#
# When running the [ <project_root>/scripts/install.sh ] script you are prompted to select the
# distro for setup and it will try to find a custom distro setup file to invoke:
# [ <project_root>/private/scripts/SUPPORTED_DISTRO_NAME/setup.sh ]
#
# Also, the install script will gather the list of apps to be installed by using the selected
# distro for setup. See the [ <project_root>/private/config/apps/config.json ] file.
#
SUPPORTED_DISTROS=( "fedora" "ubuntu" )
DEFAULT_HOST_NAME="myPC"
DEFAULT_GIT_NAME="My Name"
DEFAULT_GIT_EMAIL="[email protected]"