From 17e98ca6ba018d55c353597785ac24ae1aefdea9 Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Mon, 3 May 2021 20:35:01 +0200 Subject: [PATCH] renamed shell customizations --- .config/custom_scripts/git_auto_save.sh | 0 .../git_auto_save.sh | 0 .shell_customizations | 24 +++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .config/custom_scripts/git_auto_save.sh rename .config/{custom_functions => custom_shell_functions}/git_auto_save.sh (100%) create mode 100644 .shell_customizations diff --git a/.config/custom_scripts/git_auto_save.sh b/.config/custom_scripts/git_auto_save.sh new file mode 100644 index 0000000..e69de29 diff --git a/.config/custom_functions/git_auto_save.sh b/.config/custom_shell_functions/git_auto_save.sh similarity index 100% rename from .config/custom_functions/git_auto_save.sh rename to .config/custom_shell_functions/git_auto_save.sh diff --git a/.shell_customizations b/.shell_customizations new file mode 100644 index 0000000..a28a82a --- /dev/null +++ b/.shell_customizations @@ -0,0 +1,24 @@ +#!/bin/bash + +custom_func_dir=$HOME/.config/custom_shell_functions +for f in $custom_func_dir/*; do source $f; done + +function connectToStorageVM() { + ssh alex@173.212.206.52 +} + +function connectToVM01() { + ssh alex@167.86.117.202 +} + +function connectToBackupServer() { + ssh alex@161.97.184.228 +} + +function connectToPi() { + ssh alex@192.168.0.205 +} + +function activate() { + source ./venv/bin/activate +}