25 lines
728 B
Plaintext
25 lines
728 B
Plaintext
|
# Konfigurationsdatei fuer screen
|
||
|
# Speicherort: ~/.screenrc
|
||
|
|
||
|
# Allgemein
|
||
|
startup_message off # Keine Willkommensnachricht
|
||
|
vbell off # Kein Blinken
|
||
|
msgwait 1 # Nachrichten für 1 Sekunden anzeigen
|
||
|
defutf8 on # utf8
|
||
|
autodetach on # on = default
|
||
|
shelltitle 'screen' # Fenstertitel
|
||
|
hardcopydir $HOME # Screenshots ins Homeverzeichnis
|
||
|
defscrollback 100000 # Zeilenspeicher
|
||
|
defmonitor on # Aktivitäten im Fenstertitel
|
||
|
|
||
|
# Fenster
|
||
|
screen -t screen
|
||
|
#screen -t screen #zweites Fenster zum Start
|
||
|
#screen -t syslog sudo tail -f /var/log/syslog.log
|
||
|
|
||
|
# Fensterauswahl
|
||
|
select 0
|
||
|
|
||
|
# Statuszeile
|
||
|
caption always "%{= wk} %-w%{= KW} [%n %t] %{-}%+w %= | %l | %Y-%m-%d %c "
|