aboutsummaryrefslogtreecommitdiff
path: root/library/setupPkgPipx.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/setupPkgPipx.sh
parent05b8c6f68cb99ef215fd7b4cf362fe9f7be09e38 (diff)
update files
Diffstat (limited to 'library/setupPkgPipx.sh')
-rw-r--r--library/setupPkgPipx.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/library/setupPkgPipx.sh b/library/setupPkgPipx.sh
new file mode 100644
index 0000000..c208805
--- /dev/null
+++ b/library/setupPkgPipx.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+setupPkgPipx () {
+ readarray -t pipxPkg < <(cat $HOME/archisofiles/pkglists/pipxpkglist.txt)
+
+ for pkg in ${pipxPkg[@]}; do
+ pipx install "$pkg"
+ done
+}
+
+setupPkgPipx