aboutsummaryrefslogtreecommitdiff
path: root/library/yaySetupPkg.sh
diff options
context:
space:
mode:
authorLibravatar blueingreen68 <blueingreen68@gmail.com>2023-12-28 18:40:51 +0500
committerLibravatar blueingreen68 <blueingreen68@gmail.com>2023-12-28 18:40:51 +0500
commit13eb5f3cfb004e5910c8e007bf1e23333c846e4e (patch)
tree48c50decc561cd3c675338eba0817ca3402c84ff /library/yaySetupPkg.sh
parent05b8c6f68cb99ef215fd7b4cf362fe9f7be09e38 (diff)
update files
Diffstat (limited to 'library/yaySetupPkg.sh')
-rwxr-xr-xlibrary/yaySetupPkg.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/library/yaySetupPkg.sh b/library/yaySetupPkg.sh
deleted file mode 100755
index 326a3b4..0000000
--- a/library/yaySetupPkg.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-yaySetupPkg () {
- cd
- git clone https://aur.archlinux.org/yay
-
- cd $HOME/yay
- makepkg -isr
-
- cd
- rm -rf $HOME/yay
-
- if [ "$1" = "pc" ]; then
- yay -S --needed - < "$dirArchIsoFiles"/pkglist.txt
- elif [ "$1" = "notebook" ]; then
- yay -S --needed - < "$dirArchIsoFiles"/pkglistnote.txt
- fi
-}
-
-select platform in "pc" "notebook"; do
- yaySetupPkg "$platform"
-done