tmux: setze windows-title auf ssh-ziel
This commit is contained in:
parent
7ae91cb972
commit
462ca178ff
2 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue