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__RC vim || return 2
[ $NO_COMPILE_VIM ] && return 0
[ $COMPILE_VIM ] && [[ $COMPILE_VIM -eq 1 ]] && return 0
STATUS 'starting vim setup'
"$DOTWRYN_PATH/vim/update" \

View File

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

View File

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

View File

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

View File

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