diff --git a/.bash_functions b/.bash_functions index 84c5775..fcac2d2 100644 --- a/.bash_functions +++ b/.bash_functions @@ -9,3 +9,8 @@ function rgv { function psk { ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9 } +ssh() { + tmux rename-window "$*" + command ssh "$@" + exit +} diff --git a/.tmux.conf b/.tmux.conf index 9235b0f..cb28b01 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -10,10 +10,6 @@ set-option -gw aggressive-resize on set -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster set -g history-limit 50000 # increase scrollback buffer size set -g mouse on # Maus-Unterstützung aktivieren -#set -g window-style 'fg=colour247,bg=colour236' # dunkelt inaktive Panes ab -#set -g window-active-style 'fg=colour250,bg=black' # hebt die aktive Pane ab -setw -g window-status-current-format '#{pane_current_command}' # Deaktiviert die Kennzeichnung des aktiven Fensters mit Nummer -setw -g window-status-format '#{pane_current_command}' # Deaktiviert die Kennzeichnung des letzten Fensters mit - set-window-option -g clock-mode-style 24 # Uhrzeit auf 24h Format set-window-option -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen: set-window-option -g automatic-rename on # Automatically set window title