Diferències
Ací es mostren les diferències entre la revisió seleccionada i la versió actual de la pàgina.
| Ambdós costats versió prèvia Revisió prèvia Següent revisió | Revisió prèvia | ||
| linux:debian:seedbox:screen [24/07/2020 08:26] – [.screenrc] mate | linux:debian:seedbox:screen [25/05/2023 22:31] (actual) – [split] mate | ||
|---|---|---|---|
| Línia 1: | Línia 1: | ||
| = configuración/ | = configuración/ | ||
| + | == install & help | ||
| + | * <code bash> | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * versión moderna TMUX: [[https:// | ||
| + | |||
| == comando | == comando | ||
| - | * '' | + | * '' |
| - | * '' | + | * '' |
| - | * '' | + | * '' |
| * '' | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | |||
| + | == shortcuts | ||
| + | (todas las letras en minúsculas excepto las negritas) | ||
| + | |||
| + | * < | ||
| + | * < | ||
| + | * < | ||
| + | * < | ||
| + | |||
| + | === split | ||
| + | * < | ||
| + | * crear con < | ||
| + | * < | ||
| + | * < | ||
| + | === move | ||
| + | * < | ||
| + | * < | ||
| + | * < | ||
| + | * < | ||
| + | |||
| + | === log | ||
| + | * < | ||
| + | * < | ||
| + | |||
| + | === más... | ||
| + | {{ : | ||
| + | /via: [[http:// | ||
| == .screenrc | == .screenrc | ||
| - | * fichero de configuración en '' | + | fichero de configuración en '' |
| - | hardstatus alwayslastline ' | + | < |
| - | activity | + | # Bind F11 and F12 (NOT F1 and F2) to previous and next screen window |
| - | * 1ª linea: evita msg informativo | + | #bindkey -k F1 prev |
| - | * 2ª linea: barra informativa (te permite saber si estás en una screen | + | #bindkey -k F2 next |
| - | * < | + | |
| + | # Also for ctrl-alt right and left arrows | ||
| + | # Note disable in window manager to allow through | ||
| + | bindkey ^[[1;7D prev | ||
| + | bindkey ^[[1;7C next | ||
| + | |||
| + | startup_message off | ||
| + | |||
| + | # Disable visual bell | ||
| + | vbell off | ||
| + | |||
| + | # Window list at the bottom. | ||
| + | hardstatus alwayslastline | ||
| + | hardstatus string | ||
| + | #hardstatus string " | ||
| + | |||
| + | # From Stephen Shirley | ||
| + | # Don't block command output if the terminal stops responding | ||
| + | # (like if the ssh connection times out for example). | ||
| + | nonblock on | ||
| + | |||
| + | # Allow editors etc. to restore display on exit | ||
| + | # rather than leaving existing text in place | ||
| + | altscreen on | ||
| + | |||
| + | # Enable 256-color mode when screen is started with TERM=xterm-256color | ||
| + | # Taken from: http:// | ||
| + | # | ||
| + | # Note that TERM != " | ||
| + | # " | ||
| + | # | ||
| + | # terminfo and termcap for nice 256 color terminal | ||
| + | # allow bold colors - necessary for some reason | ||
| + | attrcolor b " | ||
| + | # tell screen how to set colors. AB = background, AF=foreground | ||
| + | # | ||
| + | |||
| + | # save more scrollback | ||
| + | defscrollback 30000 | ||
| + | </ | ||
| + | < | ||
| startup_message off | startup_message off | ||
| Línia 25: | Línia 101: | ||
| hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%? | hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%? | ||
| </ | </ | ||
| - | + | < | |
| - | == shortcuts | + | hardstatus alwayslastline '%{= wk}%? |
| - | | + | activity '' |
| - | * Ctrl+a : nueva consola virtual | + | * 1ª linea: evita msg informativo |
| - | * Ctrl+a n,a : ir a siguiente y anterior consola | + | * 2ª linea: barra informativa |
| - | * Ctrl+a | + | |
| - | * Ctrl+a w : mostrar lista de consolas abiertas | + | |
| - | * Ctrl+a May+a : poner nombre a la consola actual | + | |
| - | * Ctrl+d : salir de consola | + | |