1
0
This commit is contained in:
Jeff Lance 2024-03-01 11:37:17 +01:00
parent 9745681080
commit 2187fcf99f
3 changed files with 4 additions and 19 deletions

View File

@ -2,13 +2,9 @@
# Logging function # Logging function
log() { log() {
printf "${C_BLU}>>>>> %s <<<<<${F_RST}" "$1" printf "$(tput setaf 4)$(tput bold)>>>>> %s <<<<<$(tput sgr0)" "$1"
} }
# Testing existance function
exist() {
command -v "$1$" >/dev/null 2>&1
}
# Packages to install # Packages to install

View File

@ -2,20 +2,14 @@
# Logging function # Logging function
log() { log() {
printf "${C_BLU}>>>>> %s <<<<<${F_RST}" "$1" printf "$(tput setaf 4)$(tput bold)>>>>> %s <<<<<$(tput sgr0)" "$1"
}
# Testing existance function
exist() {
command -v "$1$" >/dev/null 2>&1
} }
# Environment variables
ZIMDIR=${HOME}/.zim: ZIMDIR=${HOME}/.zim:
# Packages to install # Packages to install
packages=( packages=(
starship starship

View File

@ -2,12 +2,7 @@
# Logging function # Logging function
log() { log() {
printf "${C_BLU}>>>>> %s <<<<<${F_RST}" "$1" printf "$(tput setaf 4)$(tput bold)>>>>> %s <<<<<$(tput sgr0)" "$1"
}
# Testing existance function
exist() {
command -v "$1$" >/dev/null 2>&1
} }