summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/ext10
-rwxr-xr-x.local/bin/statusbar/sb-popupgrade2
2 files changed, 6 insertions, 6 deletions
diff --git a/.local/bin/ext b/.local/bin/ext
index 927fb5b..6950ff6 100755
--- a/.local/bin/ext
+++ b/.local/bin/ext
@@ -24,15 +24,15 @@ fi
if [ -f "$archive" ] ; then
case "$archive" in
- *.tar.bz2|*.tbz2) tar xvjf "$archive" ;;
- *.tar.xz) tar -xf "$archive" ;;
- *.tar.gz|*.tgz) tar xvzf "$archive" ;;
- *.tar.zst) tar -I zstd -xf "$archive" ;;
+ *.tar.bz2|*.tbz2) bsdtar -xf "$archive" ;;
+ *.tar.xz) bsdtar -xf "$archive" ;;
+ *.tar.gz|*.tgz) bsdtar -xf "$archive" ;;
+ *.tar.zst) bsdtar -xf "$archive" ;;
+ *.tar) bsdtar -xf "$archive" ;;
*.lzma) unlzma "$archive" ;;
*.bz2) bunzip2 "$archive" ;;
*.rar) unrar x -ad "$archive" ;;
*.gz) gunzip "$archive" ;;
- *.tar) tar xvf "$archive" ;;
*.zip) unzip "$archive" ;;
*.Z) uncompress "$archive" ;;
*.7z) 7z x "$archive" ;;
diff --git a/.local/bin/statusbar/sb-popupgrade b/.local/bin/statusbar/sb-popupgrade
index dd5322f..29d6230 100755
--- a/.local/bin/statusbar/sb-popupgrade
+++ b/.local/bin/statusbar/sb-popupgrade
@@ -2,7 +2,7 @@
printf "Beginning upgrade.\\n"
-paru -Syu
+yay -Syu
pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
printf "\\nUpgrade complete.\\nPress <Enter> to exit window.\\n\\n"