Quellcode durchsuchen

structure change caused by ansible automation

master
Dirk Alders vor 1 Jahr
Ursprung
Commit
4d4d6e3268

+ 9
- 2
.ssh/config Datei anzeigen

@@ -29,10 +29,17 @@ Host buche_tmux
29 29
     RequestTTY yes
30 30
     RemoteCommand tmux attach-session -t default_ssh || tmux new-session -s default_ssh
31 31
 
32
+Host erle
33
+    HostName localhost
34
+    User dirk
35
+    Port 2022
36
+    ProxyJump firewall
37
+
32 38
 Host erle_tmux
33
-    HostName erle
39
+    HostName localhost
34 40
     User dirk
35
-    Port 22
41
+    Port 2022
42
+    ProxyJump firewall
36 43
     RequestTTY yes
37 44
     RemoteCommand tmux attach-session -t default_ssh || tmux new-session -s default_ssh
38 45
 

+ 0
- 9
.zshrc.d/add_defaults Datei anzeigen

@@ -1,9 +0,0 @@
1
-ln -vs __available__/bin.zsh
2
-ln -vs __available__/less.zsh
3
-ln -vs __available__/ctools.zsh
4
-ln -vs __available__/hostname_welcome.zsh
5
-ln -vs __available__/prompt_color.zsh
6
-ln -vs __available__/prompt_autosuggest.zsh
7
-ln -vs __available__/prompt_kali.zsh
8
-ln -vs __available__/todo.zsh
9
-

.zshrc.d/__available__/backup_data.zsh → .zshrc.d/backup_data.zsh Datei anzeigen


.zshrc.d/__available__/bell-none.zsh → .zshrc.d/bell-none.zsh Datei anzeigen


.zshrc.d/__available__/bin.zsh → .zshrc.d/bin.zsh Datei anzeigen


.zshrc.d/__available__/ctools.zsh → .zshrc.d/ctools.zsh Datei anzeigen


.zshrc.d/__available__/dd.zsh → .zshrc.d/dd.zsh Datei anzeigen


.zshrc.d/__available__/hostname_welcome.zsh → .zshrc.d/hostname_welcome.zsh Datei anzeigen


.zshrc.d/__available__/less.zsh → .zshrc.d/less.zsh Datei anzeigen


.zshrc.d/__available__/neofetch.zsh → .zshrc.d/neofetch.zsh Datei anzeigen


.zshrc.d/__available__/prompt_adam1.zsh → .zshrc.d/prompt_adam1.zsh Datei anzeigen


.zshrc.d/__available__/prompt_autosuggest.zsh → .zshrc.d/prompt_autosuggest.zsh Datei anzeigen


.zshrc.d/__available__/prompt_color.zsh → .zshrc.d/prompt_color.zsh Datei anzeigen


.zshrc.d/__available__/prompt_kali.zsh → .zshrc.d/prompt_kali.zsh Datei anzeigen


.zshrc.d/__available__/prompt_powerline.zsh → .zshrc.d/prompt_powerline.zsh Datei anzeigen


.zshrc.d/__available__/ssh.zsh → .zshrc.d/ssh.zsh Datei anzeigen


.zshrc.d/__available__/tmux.zsh → .zshrc.d/tmux.zsh Datei anzeigen


.zshrc.d/__available__/todo.zsh → .zshrc.d/todo.zsh Datei anzeigen


+ 0
- 17
add_bash Datei anzeigen

@@ -1,17 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.bashrc.d) ]]; then
6
-    echo "A bash configuration already exists (~/.bashrc.d)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating base link"
10
-    ln -vs $SCRIPTPATH/.bashrc.d ~/.bashrc.d
11
-fi
12
-
13
-GS=`grep .bashrc.d ~/.bashrc`
14
-if [ ${#GS} -eq 0 ]; then
15
-    echo "Adding execution of scripts in ~.bashrc.d"
16
-    cat ~/.bashrc.d/BASHRC_ADDON >> ~/.bashrc
17
-fi

+ 0
- 12
add_bin Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/bin) ]]; then
6
-    echo "A ssh configuration already exists (~/bin)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating link"
10
-    ln -vs $SCRIPTPATH/bin ~/bin
11
-fi
12
-

+ 0
- 12
add_nemo_config Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.nemo.json) ]]; then
6
-    echo "A nemo configuration already exists (~/.nemo.json)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating link"
10
-    ln -vs $SCRIPTPATH/.nemo.json ~/
11
-fi
12
-

+ 0
- 12
add_powerline Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.config/powerline) ]]; then
6
-    echo "A powerline configuration already exists (~/.config/powerline)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating link"
10
-    ln -vs $SCRIPTPATH/.config/powerline ~/.config/powerline
11
-fi
12
-

+ 0
- 12
add_ssh_config Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.ssh/config) ]]; then
6
-    echo "A ssh configuration already exists (~/.ssh/config)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating link"
10
-    ln -vs $SCRIPTPATH/.ssh/config ~/.ssh/config
11
-fi
12
-

+ 0
- 12
add_tmux Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.tmux.conf) ]]; then
6
-    echo "A tmux configuration already exists (~/.tmux.conf)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating link"
10
-    ln -vs $SCRIPTPATH/.tmux.conf ~/.tmux.conf
11
-fi
12
-

+ 0
- 21
add_vim Datei anzeigen

@@ -1,21 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-
6
-if [[ ! -e ~/.vim ]]; then
7
-    mkdir -v ~/.vim
8
-fi
9
-
10
-if [[ ! -e ~/.cache/vim ]]; then
11
-    mkdir -v ~/.cache/vim
12
-fi
13
-
14
-if [[ (-e ~/.vimrc || -e ~/.vim/skeletons) ]]; then
15
-    echo "A vim configuration already exists (~/.vimrc or ~/.vim/skeletons)"
16
-    echo "Remove this configuration and start the script again"
17
-else
18
-    echo "Creating base links"
19
-    ln -vs $SCRIPTPATH/.vimrc ~/.vimrc
20
-    ln -vs $SCRIPTPATH/.vim/skeletons ~/.vim/skeletons
21
-fi

+ 0
- 13
add_zshrc Datei anzeigen

@@ -1,13 +0,0 @@
1
-#!/bin/zsh
2
-#
3
-SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
4
-
5
-if [[ (-e ~/.zshrc || -e ~/.zshrc.d) ]]; then
6
-    echo "A zsh configuration already exists (~/.zshrc or ~/.zshrc.d)"
7
-    echo "Remove this configuration and start the script again"
8
-else
9
-    echo "Creating base links"
10
-    ln -vs $SCRIPTPATH/.zshrc ~/.zshrc
11
-    ln -vs $SCRIPTPATH/.zshrc.d ~/.zshrc.d
12
-fi
13
-

+ 0
- 14
my_defaults Datei anzeigen

@@ -1,14 +0,0 @@
1
-#!/bin/sh
2
-#
3
-
4
-# general configurations
5
-./add_bin
6
-./add_nemo_config
7
-./add_ssh_config
8
-./add_tmux
9
-./add_vim
10
-./add_zshrc
11
-
12
-# zshrc.d configurations
13
-./.zshrc.d/add_defaults
14
-

+ 0
- 12
root_defaults Datei anzeigen

@@ -1,12 +0,0 @@
1
-#!/bin/sh
2
-#
3
-
4
-# general configurations
5
-./add_bin
6
-./add_tmux
7
-./add_vim
8
-./add_zshrc
9
-
10
-# zshrc.d configurations
11
-./.zshrc.d/add_defaults
12
-

Laden…
Abbrechen
Speichern