From 4c67b049e895cd14a04c1a0bb47660ec806c4d69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20G=C3=9CM=C3=9C=C5=9E?= <55718295+yigitoo@users.noreply.github.com> Date: Tue, 7 Feb 2023 20:47:51 +0300 Subject: [PATCH] for arch linux i changed apt with pacman bro. --- setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.sh b/setup.sh index 589d553..e50f025 100755 --- a/setup.sh +++ b/setup.sh @@ -27,8 +27,8 @@ dependencies() read -r -p "(Mandatory) Awesome: the main aspect of this pack (Y/n)" choice case "$choice" in y|Y|"" ) - sudo apt update - sudo apt install awesome + sudo pacman -Syyu + sudo pacman -S awesome ;; n|N ) exit ;; * ) exit ;; @@ -153,9 +153,9 @@ install_optional() { read -r -p "$1""(Y/n)" choice case "$choice" in - y|Y|"" ) sudo apt install "$2" ;; + y|Y|"" ) sudo pacman -S "$2" ;; esac } clear -welcome \ No newline at end of file +welcome