flutter support

This commit is contained in:
Josh Ashton
2023-06-26 21:53:06 -06:00
parent b328da905f
commit d85367c819
5 changed files with 73 additions and 5 deletions
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/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