Advertisement
Guest User

.screenrc

a guest
Aug 3rd, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. # as duas linhas seguintes dar um status de duas linhas, com a janela atual em destaque
  2. hardstatus alwayslastline
  3. hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]'
  4.  
  5. # buffer de rolamento enorme
  6. defscrollback 5000
  7.  
  8. # nenhuma mensagem de boas-vindas
  9. startup_message off
  10.  
  11. # 256 cores
  12. attrcolor b ".I"
  13. termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
  14. defbce on
  15.  
  16. # rastreamento do mouse permite mudar o foco região clicando
  17. mousetrack on
  18.  
  19. # navegar regiões com Ctrl-setas
  20. bindkey "^[[1;5D" focus left
  21. bindkey "^[[1;5C" focus right
  22. bindkey "^[[1;5A" focus up
  23. bindkey "^[[1;5B" focus down
  24.  
  25. # alternar rapidamente entre regiões, utilizando guia e setas
  26. bind -c rsz \t eval "focus" "command -c rsz" # Tab
  27. bind -c rsz -k kl eval "focus left" "command -c rsz" # Left
  28. bind -c rsz -k kr eval "focus right" "command -c rsz" # Right
  29. bind -c rsz -k ku eval "focus up" "command -c rsz" # Up
  30. bind -c rsz -k kd eval "focus down" "command -c rsz" # Down
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement