mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 13:35:42 -07:00
Fix options;modularize.
This commit is contained in:
55
install.sh
55
install.sh
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set nounset
|
set -o nounset
|
||||||
set errexit
|
set -o errexit
|
||||||
|
|
||||||
function prerequisites {
|
function prerequisites {
|
||||||
if which zsh > /dev/null 2>&1 ; then
|
if which zsh > /dev/null 2>&1 ; then
|
||||||
@@ -282,13 +282,32 @@ EOF
|
|||||||
}
|
}
|
||||||
|
|
||||||
function verbose {
|
function verbose {
|
||||||
(( ${VERBOSE:-0} )) && echo "$@" >&2
|
(( ${VERBOSE:-0} )) && echo "$@" >&2 || return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# Operations
|
||||||
|
|
||||||
|
function install_main {
|
||||||
|
(( $MINIMAL )) || prerequisites
|
||||||
|
(( $INSTALL_PKGS )) && is_deb_system && install_apt_pkgs
|
||||||
|
install_dotfile_dir "${BASEDIR}/dotfiles"
|
||||||
|
test -d "${BASEDIR}/private_dotfiles" && \
|
||||||
|
test -d "${BASEDIR}/.git/git-crypt" && \
|
||||||
|
install_dotfile_dir "${BASEDIR}/private_dotfiles"
|
||||||
|
test -d "${BASEDIR}/local_dotfiles" && \
|
||||||
|
install_dotfile_dir "${BASEDIR}/local_dotfiles"
|
||||||
|
install_basic_dir "${BASEDIR}/bin" "${HOME}/bin"
|
||||||
|
(( $MINIMAL )) || postinstall
|
||||||
|
(( $INSTALL_KEYS )) && install_keys
|
||||||
|
save_prefs
|
||||||
|
cleanup
|
||||||
}
|
}
|
||||||
|
|
||||||
# Setup variables
|
# Setup variables
|
||||||
read_saved_prefs
|
read_saved_prefs
|
||||||
|
|
||||||
# Defaults if not passed in or saved
|
# Defaults if not passed in or saved.
|
||||||
|
# TODO: use flags instead of environment variables.
|
||||||
BASEDIR=${BASEDIR:-$HOME/.skel}
|
BASEDIR=${BASEDIR:-$HOME/.skel}
|
||||||
MINIMAL=${MINIMAL:-0}
|
MINIMAL=${MINIMAL:-0}
|
||||||
INSTALL_KEYS=${INSTALL_KEYS:-1}
|
INSTALL_KEYS=${INSTALL_KEYS:-1}
|
||||||
@@ -309,20 +328,20 @@ else
|
|||||||
HAVE_X=0
|
HAVE_X=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
IS_KALI=`grep -ci kali /etc/os-release 2>/dev/null`
|
IS_KALI=`grep -ci kali /etc/os-release 2>/dev/null || true`
|
||||||
ARCH=`uname -m`
|
ARCH=`uname -m`
|
||||||
|
|
||||||
|
OPERATION=${1:-install}
|
||||||
|
|
||||||
(( $MINIMAL )) || prerequisites
|
case $OPERATION in
|
||||||
(( $INSTALL_PKGS )) && is_deb_system && install_apt_pkgs
|
install)
|
||||||
install_dotfile_dir "${BASEDIR}/dotfiles"
|
install_main
|
||||||
test -d "${BASEDIR}/private_dotfiles" && \
|
;;
|
||||||
test -d "${BASEDIR}/.git/git-crypt" && \
|
package*)
|
||||||
install_dotfile_dir "${BASEDIR}/private_dotfiles"
|
install_pkg_set packages.${2}
|
||||||
test -d "${BASEDIR}/local_dotfiles" && \
|
;;
|
||||||
install_dotfile_dir "${BASEDIR}/local_dotfiles"
|
*)
|
||||||
install_basic_dir "${BASEDIR}/bin" "${HOME}/bin"
|
echo "Unknown operation $OPERATION." >/dev/stderr
|
||||||
(( $MINIMAL )) || postinstall
|
exit 1
|
||||||
(( $INSTALL_KEYS )) && install_keys
|
;;
|
||||||
save_prefs
|
esac
|
||||||
cleanup
|
|
||||||
|
|||||||
Reference in New Issue
Block a user