From a4a700c8a424f2e2467517096182a3a3aaa9b43c Mon Sep 17 00:00:00 2001 From: blueingreen68 Date: Mon, 22 Jan 2024 13:33:26 +0500 Subject: unarchived --- library/setupPkg/setupPkgPipx.sh | 15 --------------- library/setupPkg/setupPkgYay.sh | 30 ------------------------------ 2 files changed, 45 deletions(-) delete mode 100755 library/setupPkg/setupPkgPipx.sh delete mode 100755 library/setupPkg/setupPkgYay.sh (limited to 'library/setupPkg') diff --git a/library/setupPkg/setupPkgPipx.sh b/library/setupPkg/setupPkgPipx.sh deleted file mode 100755 index e9a38ee..0000000 --- a/library/setupPkg/setupPkgPipx.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -setupPkgPipx () { - readarray -t pipxPkg < <(cat "$dirArchIsoFiles"/pkglists/pipxpkglist.txt) - - for pkg in ${pipxPkg[@]}; do - pipx install "$pkg" - done - - pipx ensurepath - - echo "✅ Готово" -} - -setupPkgPipx diff --git a/library/setupPkg/setupPkgYay.sh b/library/setupPkg/setupPkgYay.sh deleted file mode 100755 index 0bcc293..0000000 --- a/library/setupPkg/setupPkgYay.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -setupPkgYay () { - 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"/pkglists/pkglist.txt - elif [ "$1" = "notebook" ]; then - yay -S --needed - < "$dirArchIsoFiles"/pkglists/pkglistnote.txt - fi -} - -select platform in "pc" "notebook"; do - - if [ "$platform" = "" ]; then - echo "Invalid option" - break - else - setupPkgYay "$platform" - fi - - echo "✅ Готово" -done -- cgit