Update 3 files

- /README.md
- /Install.sh
- /RemoteInstall.sh
This commit is contained in:
octt
2023-05-17 14:31:25 +00:00
parent f7f581ddb6
commit ac6caf5fb9
3 changed files with 36 additions and 2 deletions

13
README.md Normal file
View File

@@ -0,0 +1,13 @@
This is the repo with all my system configurations. It's public just for my comfort, not for public use, but you are free anyways to use everything you want as you need. Just don't blindly install everything on your system without knowing the implications.
Install oneliner (run as root to install system components) (as I just said, don't use):
<pre><!--
--> Url="https://gitlab.com/octospacc/Configs/-/raw/main/RemoteInstall.sh"; <!--
--> if [ -n "$(which curl)" ]; <!--
--> then curl "$Url" | sh; <!--
--> elif [ -n "$(which wget)" ]; <!--
--> then wget -O - "$Url" | sh; <!--
--> else echo "Missing tools. Install \`curl\` or \`wget\`."; <!--
--> fi
</pre>