swap --no-fluff for --min and update some install settings

This commit is contained in:
Wryn (yage) Wagner 2023-11-11 07:40:10 -07:00
parent 7faf12a211
commit e54e98bf31
5 changed files with 17 additions and 15 deletions

View File

@ -36,7 +36,7 @@ CONFIG__VIM() {
CONFIG__ENV vim || return 1 CONFIG__ENV vim || return 1
CONFIG__RC vim || return 2 CONFIG__RC vim || return 2
[ $NO_COMPILE_VIM ] && return 0 [ $COMPILE_VIM ] && [[ $COMPILE_VIM -eq 1 ]] && return 0
STATUS 'starting vim setup' STATUS 'starting vim setup'
"$DOTWRYN_PATH/vim/update" \ "$DOTWRYN_PATH/vim/update" \

View File

@ -1,4 +1,4 @@
aws-cli-v2-bin aws-cli-v2
cmake cmake
cowsay cowsay
figlet figlet
@ -8,3 +8,5 @@ ncurses
python python
ripgrep ripgrep
tmux tmux
vim
vim-runtime

View File

@ -1,5 +1,4 @@
aws aws
build-essential
cmake cmake
cowsay cowsay
figlet figlet

View File

@ -33,19 +33,16 @@ OS__GET_OS() {
OS__INSTALL_SOURCE_DEPENDENCIES() { OS__INSTALL_SOURCE_DEPENDENCIES() {
case $OS_NAME in case $OS_NAME in
arch ) arch )
SCWRYPTS packages/install \ command -v yay >/dev/null 2>&1 \
'https://aur.archlinux.org/yay.git' \ || SCWRYPTS packages/install 'https://aur.archlinux.org/yay.git' --local-name 'yay' \
--local-name 'yay' \
; ;
;; ;;
debian ) ;; debian ) ;;
* ) ;; * ) ;;
esac esac
SCWRYPTS packages/install \ [ $COMPILE_DMENU ] && [[ $COMPILE_DMENU -eq 1 ]] \
'https://github.com/tiyn/dmenu' \ && SCWRYPTS packages/install 'https://github.com/tiyn/dmenu' --local-name 'patched-dmenu'
--local-name 'patched-dmenu' \
;
} }
##################################################################### #####################################################################

View File

@ -3,11 +3,15 @@ cd "${0:a:h}"
while [[ $# -gt 0 ]] while [[ $# -gt 0 ]]
do do
case $1 in case $1 in
--no-compile-vim ) NO_COMPILE_VIM=1 ;;
--ci ) export CI=1 ;;
--force-root ) FORCE_ROOT=1 ;; --force-root ) FORCE_ROOT=1 ;;
--no-fluff ) --ci ) export CI=1 ;;
NO_COMPILE_VIM=1
--no-compile-dmenu ) COMPILE_DMENU=0 ;;
--no-compile-vim ) COMPILE_VIM=0 ;;
--min )
COMPILE_VIM=0
COMPILE_DMENU=0
;; ;;
esac esac
shift 1 shift 1