This commit is contained in:
2025-02-07 21:34:56 -08:00
parent e4e2cea15a
commit 6e8bdee0ec
3 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
#!/bin/bash
sudo dnf install --skip-unavailable --skip-broken -y $(cat $HOME/.install/install_list_dnf.inst)
echo ===========================================================================
echo running pip now

9
install.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
sh ./.install/packages.sh
echo copping over config
cp -rf ./* $HOME/.config/

0
update.sh Normal file
View File