We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 367531e commit 4a617a2Copy full SHA for 4a617a2
2 files changed
src/main.sh
@@ -43,7 +43,7 @@ usr_interact() {
43
}
44
# installing required software
45
install_requirements() {
46
- sudo pacman -Syu openssh borg rsync && return 0
+ sudo pacman -Syu --noconfirm --needed openssh borg rsync && return 0
47
return 1
48
49
# rsync recovery
src/packages/core.sh
@@ -5,11 +5,11 @@ PKGS_WORKING_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # location env
5
6
# === func ===
7
# installing packages with pacman, yay & flatpak
8
-install_pkgs(
+install_pkgs() {
9
inst_pacman_pkgs $nvidia_pkgs $pacman_pkgs
10
inst_yay_pkgs $yay_pkgs
11
inst_flatpak_pkgs $flatpak_pkgs
12
-)
+}
13
# setup services
14
setup_services() {
15
psql_service
0 commit comments