Bugfix library
This commit is contained in:
parent
2b5dddcd25
commit
2b1a2d7ffa
@ -11,9 +11,29 @@
|
|||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
source ~/dotfiles/.install/library.sh
|
|
||||||
clear
|
clear
|
||||||
|
|
||||||
|
cat <<"EOF"
|
||||||
|
_ _ _ _
|
||||||
|
| | | |_ __ __| | __ _| |_ ___ ___
|
||||||
|
| | | | '_ \ / _` |/ _` | __/ _ \/ __|
|
||||||
|
| |_| | |_) | (_| | (_| | || __/\__ \
|
||||||
|
\___/| .__/ \__,_|\__,_|\__\___||___/
|
||||||
|
|_|
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
_isInstalledYay() {
|
||||||
|
package="$1";
|
||||||
|
check="$(yay -Qs --color always "${package}" | grep "local" | grep "${package} ")";
|
||||||
|
if [ -n "${check}" ] ; then
|
||||||
|
echo 0; #'0' means 'true' in Bash
|
||||||
|
return; #true
|
||||||
|
fi;
|
||||||
|
echo 1; #'1' means 'false' in Bash
|
||||||
|
return; #false
|
||||||
|
}
|
||||||
|
|
||||||
# ------------------------------------------------------
|
# ------------------------------------------------------
|
||||||
# Confirm Start
|
# Confirm Start
|
||||||
# ------------------------------------------------------
|
# ------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user