Go to file
octospacc 537ef4be7e . 2024-02-28 16:15:15 +01:00
Desktop/Home/.config . 2023-12-12 18:06:52 +01:00
Misc . 2023-12-12 18:06:52 +01:00
Server . 2024-02-28 16:15:15 +01:00
Termux/Home/.shortcuts Termux shortcuts 2023-03-07 19:28:35 +01:00
Tests . 2023-12-12 18:06:52 +01:00
Windows/Scripts . 2023-12-12 18:06:52 +01:00
.gitignore . 2023-12-12 18:06:52 +01:00
Install.sh Misc updates 2023-05-19 19:54:24 +02:00
Lib.sh . 2023-12-12 18:06:52 +01:00
README.md . 2023-12-12 18:06:52 +01:00
RemoteInstall.sh . 2023-12-12 18:06:52 +01:00

README.md

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):

 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;