initial commit for dotfiles etc.

This commit is contained in:
2022-04-28 23:36:42 +02:00
commit a9c2fb5508
205 changed files with 10609 additions and 0 deletions

13
scripts/mount_general.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
sshMount () {
args=($@)
args=(${args[@]:2})
for ((i=0; i < ${#args[@]}; i=i + 2)); do
sshfs $1@$2:/citadel/${args[$i]}/ /home/fabian/${args[$i + 1]}/ -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=8
done
}