Go to file
octospacc bee34469cd . 2023-08-20 22:09:58 +02:00
Desktop/Home/.config New install scripts, consistent folder structure 2023-03-06 09:40:49 +01:00
Misc Misc updates 2023-05-19 19:54:24 +02:00
Server . 2023-08-20 22:09:58 +02:00
Termux/Home/.shortcuts Termux shortcuts 2023-03-07 19:28:35 +01:00
Tests New install scripts, consistent folder structure 2023-03-06 09:40:49 +01:00
.gitignore Fix scripts 2023-01-17 14:56:55 +01:00
Install.sh Misc updates 2023-05-19 19:54:24 +02:00
Lib.sh Upd 2023-08-04 23:43:57 +02:00
README.md Misc updates 2023-05-19 19:54:24 +02:00
RemoteInstall.sh Update 3 files 2023-05-17 14:31:25 +00: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;