From 5c68440efdd1e9054d8ceb58e5c05484147462d4 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 14 Oct 2021 12:15:46 -0700 Subject: [PATCH] Rewrote dotenv --- configurations/rtorrent.rc | 122 ------------------------------------- dotenv.sh | 14 +++++ install-extra.sh | 8 --- install-gui.sh | 6 -- install.sh | 30 --------- profile.sh | 4 -- scripts/install-arch.sh | 7 +++ scripts/install-node.sh | 13 ++++ 8 files changed, 34 insertions(+), 170 deletions(-) delete mode 100644 configurations/rtorrent.rc create mode 100644 dotenv.sh delete mode 100644 install-extra.sh delete mode 100644 install-gui.sh delete mode 100644 install.sh delete mode 100644 profile.sh create mode 100644 scripts/install-arch.sh create mode 100644 scripts/install-node.sh diff --git a/configurations/rtorrent.rc b/configurations/rtorrent.rc deleted file mode 100644 index af2996d..0000000 --- a/configurations/rtorrent.rc +++ /dev/null @@ -1,122 +0,0 @@ -############################################################################# -# A minimal rTorrent configuration that provides the basic features -# you want to have in addition to the built-in defaults. -# -# See https://github.com/rakshasa/rtorrent/wiki/CONFIG-Template -# for an up-to-date version. -############################################################################# - - -## Instance layout (base paths) -method.insert = cfg.basedir, private|const|string, (cat,"/home/USERNAME/rtorrent/") -method.insert = cfg.download, private|const|string, (cat,(cfg.basedir),"download/") -method.insert = cfg.logs, private|const|string, (cat,(cfg.basedir),"log/") -method.insert = cfg.logfile, private|const|string, (cat,(cfg.logs),"rtorrent-",(system.time),".log") -method.insert = cfg.session, private|const|string, (cat,(cfg.basedir),".session/") -method.insert = cfg.watch, private|const|string, (cat,(cfg.basedir),"watch/") - - -## Create instance directories -execute.throw = sh, -c, (cat,\ - "mkdir -p \"",(cfg.download),"\" ",\ - "\"",(cfg.logs),"\" ",\ - "\"",(cfg.session),"\" ",\ - "\"",(cfg.watch),"/load\" ",\ - "\"",(cfg.watch),"/start\" ") - - -## Listening port for incoming peer traffic (fixed; you can also randomize it) -network.port_range.set = 50000-50000 -network.port_random.set = no - - -## Tracker-less torrent and UDP tracker support -## (conservative settings for 'private' trackers, change for 'public') -dht.mode.set = disable -protocol.pex.set = no - -trackers.use_udp.set = no - - -## Peer settings -throttle.max_uploads.set = 100 -throttle.max_uploads.global.set = 250 - -throttle.min_peers.normal.set = 20 -throttle.max_peers.normal.set = 60 -throttle.min_peers.seed.set = 30 -throttle.max_peers.seed.set = 80 -trackers.numwant.set = 80 - -protocol.encryption.set = allow_incoming,try_outgoing,enable_retry - - -## Limits for file handle resources, this is optimized for -## an `ulimit` of 1024 (a common default). You MUST leave -## a ceiling of handles reserved for rTorrent's internal needs! -network.http.max_open.set = 50 -network.max_open_files.set = 600 -network.max_open_sockets.set = 300 - - -## Memory resource usage (increase if you have a large number of items loaded, -## and/or the available resources to spend) -pieces.memory.max.set = 1800M -network.xmlrpc.size_limit.set = 4M - - -## Basic operational settings (no need to change these) -session.path.set = (cat, (cfg.session)) -directory.default.set = (cat, (cfg.download)) -log.execute = (cat, (cfg.logs), "execute.log") -#log.xmlrpc = (cat, (cfg.logs), "xmlrpc.log") -execute.nothrow = sh, -c, (cat, "echo >",\ - (session.path), "rtorrent.pid", " ",(system.pid)) - - -## Other operational settings (check & adapt) -encoding.add = utf8 -system.umask.set = 0027 -system.cwd.set = (directory.default) -network.http.dns_cache_timeout.set = 25 -schedule2 = monitor_diskspace, 15, 60, ((close_low_diskspace, 1000M)) -#pieces.hash.on_completion.set = no -#view.sort_current = seeding, greater=d.ratio= -#keys.layout.set = qwerty -#network.http.capath.set = "/etc/ssl/certs" -#network.http.ssl_verify_peer.set = 0 -#network.http.ssl_verify_host.set = 0 - - -## Some additional values and commands -method.insert = system.startup_time, value|const, (system.time) -method.insert = d.data_path, simple,\ - "if=(d.is_multi_file),\ - (cat, (d.directory), /),\ - (cat, (d.directory), /, (d.name))" -method.insert = d.session_file, simple, "cat=(session.path), (d.hash), .torrent" - - -## Watch directories (add more as you like, but use unique schedule names) -## Add torrent -schedule2 = watch_load, 11, 10, ((load.verbose, (cat, (cfg.watch), "load/*.torrent"))) -## Add & download straight away -schedule2 = watch_start, 10, 10, ((load.start_verbose, (cat, (cfg.watch), "start/*.torrent"))) - - -## Run the rTorrent process as a daemon in the background -## (and control via XMLRPC sockets) -#system.daemon.set = true -#network.scgi.open_local = (cat,(session.path),rpc.socket) -#execute.nothrow = chmod,770,(cat,(session.path),rpc.socket) - - -## Logging: -## Levels = critical error warn notice info debug -## Groups = connection_* dht_* peer_* rpc_* storage_* thread_* tracker_* torrent_* -print = (cat, "Logging to ", (cfg.logfile)) -log.open_file = "log", (cfg.logfile) -log.add_output = "info", "log" -#log.add_output = "tracker_debug", "log" - -### END of rtorrent.rc ### \ No newline at end of file diff --git a/dotenv.sh b/dotenv.sh new file mode 100644 index 0000000..b6dcc7f --- /dev/null +++ b/dotenv.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Disable running as root. +if [[ "$EUID" -eq 0 ]]; then + echo "Please do not run as root" + exit 1 +fi + +# Arch Linux Setup +if [ -f "/etc/arch-release" ]; then + ./scripts/install-arch.sh +fi + +./scripts/install-node.sh \ No newline at end of file diff --git a/install-extra.sh b/install-extra.sh deleted file mode 100644 index db1cc34..0000000 --- a/install-extra.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/sh -# Install GoLang -pacman -Sy --noconfirm go - -# Install cordless -git clone https://github.com/Bios-Marcel/cordless.git -cd cordless -go build \ No newline at end of file diff --git a/install-gui.sh b/install-gui.sh deleted file mode 100644 index fe8a66e..0000000 --- a/install-gui.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/sh -# Install VSCode -pacman -Sy --noconfirm vscode - -# VLC Media Player -pacman -Sy --noconfirm vlc \ No newline at end of file diff --git a/install.sh b/install.sh deleted file mode 100644 index e6a8a50..0000000 --- a/install.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/sh - -# Install VIM -pacman -Sy --noconfirm vim - -# Install Screen -pacman -Sy --noconfirm screen - -# Install NVM -curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash - -export NVM_DIR="$HOME/.nvm" -[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" -[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" - -# Install NodeJS -nvm install --lts - -# Install Yarn -npm i -g yarn - -# Install rTorrent -pacman -Sy --noconfirm rtorrent -cp ./configurations/rtorrent.rc ~/.rtorrent.rc - -# RAR -pacman -Sy --noconfirm unrar - -# GCC -pacman -Sy --noconfirm base-devel \ No newline at end of file diff --git a/profile.sh b/profile.sh deleted file mode 100644 index a99bc75..0000000 --- a/profile.sh +++ /dev/null @@ -1,4 +0,0 @@ -# Setup NVM -export NVM_DIR="$HOME/.nvm" -[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm -[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion \ No newline at end of file diff --git a/scripts/install-arch.sh b/scripts/install-arch.sh new file mode 100644 index 0000000..5e74c00 --- /dev/null +++ b/scripts/install-arch.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Update +sudo pacman -Syuu + +# Install +sudo pacman -S vim code unrar base-devel vlc firefox -q --noconfirm \ No newline at end of file diff --git a/scripts/install-node.sh b/scripts/install-node.sh new file mode 100644 index 0000000..2620c6d --- /dev/null +++ b/scripts/install-node.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# NVM +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash +source NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" + +# Install NodeJS LTS +nvm install --lts + +# Install global packages +npm i -g yarn \ No newline at end of file