further cleanup

This commit is contained in:
Josh Ashton
2024-02-12 10:21:48 -07:00
parent d2f297862e
commit da327dc22a
2 changed files with 1 additions and 15 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/bin/zsh
firefox https://archlinux.org;
read "?Ok to update (y/n, default y): " OK
if [[ $OK == "y" || $OK == "" ]]; then
echo "starting update..."
sudo pacman -Syu;
echo "finishing update..."
else
echo "abandoning update."
fi