Add --core command line flag

This commit is contained in:
har0ke 2023-10-21 14:45:26 +02:00
parent c2744f4a92
commit 7f2edd4adf
3 changed files with 20 additions and 15 deletions

View File

@ -1,15 +1,16 @@
#!/usr/bin/bash #!/usr/bin/bash
ALL=0 ALL=0
WORKSTATION=0 CORE=0
EXTRA=0
DEV=0 DEV=0
EXTRA=0
WORKSTATION=0
if [[ "$#" -eq 0 ]]; then if [[ "$#" -eq 0 ]]; then
ALL=1 ALL=1
fi fi
options=$(getopt -o awed -l all,workstation,extra,dev -- "$@") options=$(getopt -o acdew -l all,core,dev,extra,workstation -- "$@")
[ $? -eq 0 ] || { [ $? -eq 0 ] || {
echo "Incorrect options provided" echo "Incorrect options provided"
exit 1 exit 1
@ -21,14 +22,17 @@ while true; do
-a | --all) -a | --all)
ALL=1 ALL=1
;; ;;
-w | --workstation) -c | --core)
WORKSTATION=1 CORE=1
;;
-d | --dev)
DEV=1
;; ;;
-e | --extra) -e | --extra)
EXTRA=1 EXTRA=1
;; ;;
-d | --dev) -w | --workstation)
DEV=1 WORKSTATION=1
;; ;;
--) --)
shift shift

View File

@ -120,15 +120,14 @@ function install() {
} }
mode="${1-terminal}"
echo $mode
install -d "${HOME}/.dotfiles" "./" install -d "${HOME}/.dotfiles" "./"
install .oh-my-zsh/themes/oke.zsh-theme if [ "${CORE}" -eq 1 ]; then
install .zshrc install .oh-my-zsh/themes/oke.zsh-theme
install .vimrc install .zshrc
install .winfo.sh install .vimrc
install .winfo.sh
fi
if [ "${WORKSTATION}" -eq 1 ]; then if [ "${WORKSTATION}" -eq 1 ]; then
install .Xmodmap install .Xmodmap

View File

@ -120,7 +120,9 @@ function add_pkg_list() {
packages_to_install+=("${list_packages[@]}") packages_to_install+=("${list_packages[@]}")
} }
add_pkg_list pkgs_system_base if [ "${CORE}" -eq 1 ]; then
add_pkg_list pkgs_system_base
fi
if [ "${WORKSTATION}" -eq 1 ]; then if [ "${WORKSTATION}" -eq 1 ]; then
add_pkg_list pkgs_system_workstation add_pkg_list pkgs_system_workstation