18 lines
360 B
Bash
18 lines
360 B
Bash
#!/bin/sh
|
|
|
|
|
|
cd $HOME
|
|
|
|
|
|
# =========================================================
|
|
# RUN MY GENERIC SETUP SCRIPT
|
|
# =========================================================
|
|
git clone https://gitea.local.wvr.sh/mitch/linux-setup.git
|
|
|
|
cd linux-setup
|
|
sh setup.sh
|
|
|
|
cp update.sh $HOME/
|
|
chmod +x update.sh
|
|
# =========================================================
|