Advertisement
Guest User

nbw - .screenrc

a guest
Jun 18th, 2011
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.92 KB | None | 0 0
  1. #
  2. # Example of a user's .screenrc file
  3. #
  4.  
  5. # This is how one can set a reattach password:
  6. # password ODSJQf.4IJN7E    # "1234"
  7.  
  8. defutf8 on
  9.  
  10. # no annoying audible bell, please
  11. vbell off
  12.  
  13. # detach on hangup
  14. autodetach on
  15.  
  16. # don't display the copyright page
  17. startup_message off
  18.  
  19. # emulate .logout message
  20. pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended."
  21.  
  22. # advertise hardstatus support to $TERMCAP
  23. # termcapinfo  * '' 'hs:ts=\E_:fs=\E\\:ds=\E_\E\\'
  24.  
  25. # make the shell in every window a login shell
  26. #shell -$SHELL
  27.  
  28. # autoaka testing
  29. # shellaka '> |tcsh'
  30. # shellaka '$ |sh'
  31.  
  32. # set every new windows hardstatus line to somenthing descriptive
  33. # defhstatus "screen: ^En (^Et)"
  34.  
  35. defscrollback 2048
  36.  
  37. # don't kill window after the process died
  38. # zombie "^["
  39.  
  40. # enable support for the "alternate screen" capability in all windows
  41. altscreen on
  42.  
  43. ################
  44. #
  45. # xterm tweaks
  46. #
  47.  
  48. #xterm understands both im/ic and doesn't have a status line.
  49. #Note: Do not specify im and ic in the real termcap/info file as
  50. #some programs (e.g. vi) will not work anymore.
  51. # termcap  xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l
  52. # terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l
  53.  
  54. #80/132 column switching must be enabled for ^AW to work
  55. #change init sequence to not switch width
  56. # termcapinfo  xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l
  57.  
  58. # Make the output buffer large for (fast) xterms.
  59. #termcapinfo xterm* OL=10000
  60. # termcapinfo xterm* OL=100
  61.  
  62. # tell screen that xterm can switch to dark background and has function
  63. # keys.
  64. # termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
  65. # termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
  66. # termcapinfo xterm 'kh=\EOH:kI=\E[2~:kD=\E[3~:kH=\EOF:kP=\E[5~:kN=\E[6~'
  67.  
  68. # special xterm hardstatus: use the window title.
  69. # termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'
  70.  
  71. #terminfo xterm 'vb=\E[?5h$<200/>\E[?5l'
  72. # termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l'
  73.  
  74. # emulate part of the 'K' charset
  75. # termcapinfo   xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'
  76.  
  77. # xterm-52 tweaks:
  78. # - uses background color for delete operations
  79. # termcapinfo xterm* be
  80.  
  81. ################
  82. #
  83. # wyse terminals
  84. #
  85.  
  86. #wyse-75-42 must have flow control (xo = "terminal uses xon/xoff")
  87. #essential to have it here, as this is a slow terminal.
  88. # termcapinfo wy75-42 xo:hs@
  89.  
  90. # New termcap sequences for cursor application mode.
  91. # termcapinfo wy* CS=\E[?1h:CE=\E[?1l:vi=\E[?25l:ve=\E[?25h:VR=\E[?5h:VN=\E[?5l:cb=\E[1K:CD=\E[1J
  92.  
  93. ################
  94. #
  95. # other terminals
  96. #
  97.  
  98. # make hp700 termcap/info better
  99. # termcapinfo  hp700 'Z0=\E[?3h:Z1=\E[?3l:hs:ts=\E[62"p\E[0$~\E[2$~\E[1$}:fs=\E[0}\E[61"p:ds=\E[62"p\E[1$~\E[61"p:ic@'
  100.  
  101. # Extend the vt100 desciption by some sequences.
  102. # termcap  vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC
  103. # terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC
  104. termcapinfo linux C8
  105. # old rxvt versions also need this
  106. # termcapinfo rxvt C8
  107.  
  108. termcapinfo xterm|xterms|xs|rxvt|linux ti@:te@
  109.  
  110. ################
  111. #
  112. # keybindings
  113. #
  114.  
  115. #remove some stupid / dangerous key bindings
  116. bind k
  117. bind ^k
  118. bind .
  119. bind ^\
  120. bind \\
  121. bind ^h
  122. bind h
  123. #make them better
  124. bind 'K' kill
  125. bind 'I' login on
  126. bind 'O' login off
  127. bind '}' history
  128.  
  129. # Yet another hack:
  130. # Prepend/append register [/] to the paste if ^a^] is pressed.
  131. # This lets me have autoindent mode in vi.
  132. register [ "\033:se noai\015a"
  133. register ] "\033:se ai\015a"
  134. bind ^] paste [.]
  135.  
  136. ################
  137. #
  138. # default windows
  139. #
  140.  
  141. # screen -t local 0
  142. # screen -t mail 1 mutt
  143. # screen -t 40 2 rlogin server
  144.  
  145. # caption always "%3n %t%? @%u%?%? [%h]%?%=%c"
  146. # hardstatus alwaysignore
  147. # hardstatus alwayslastline "%Lw"
  148.  
  149. # bind = resize =
  150. # bind + resize +1
  151. # bind - resize -1
  152. # bind _ resize max
  153. #
  154. # defnonblock 1
  155. # blankerprg rain -d 100
  156. # idle 30 blanker
  157. #
  158.  
  159. # CUSTOM SECTION BEGIN
  160.  
  161. # настройка режим управления потоком окна.
  162. defflow on
  163.  
  164. # включает login-режим (для обновления /var/run/utmp)
  165. deflogin on
  166.  
  167. hardstatus alwayslastline
  168. # цветная строка статуса
  169. # hardstatus string '%{= .G}%{c} [ %{+b}%{W}%H %{-b}%l %{c}][%= %{= .w}%?%-Lw%?(%{W}%n*%f%t%?(%u)%?%{w})%?%+Lw%?%?%= %{c}][%{W} %m/%d/%y %{W}%c:%s %{c}]'
  170. # ч/б адаптпция
  171. hardstatus string '%{= .}[ %H %l ][%= %?%-Lw%?(%n*%f%t%?(%u)%?)%?%+Lw%?%?%= ][ %m/%d/%y %c:%s ]'
  172. # сообщение для (visual bell)
  173. vbell_msg "vbell %n"
  174.  
  175. # сообщение если в фоновом окне bell character, ^G
  176. bell_msg "Bell %n"
  177. # сообщение для (visual bell)
  178. vbell_msg "vbell %n"
  179.  
  180. # сообщение если в фоновом окне bell character, ^G
  181. bell_msg "Bell %n"
  182.  
  183. # сообщение если есть активность в наблюдаемом окне
  184. activity "Activity on %n"
  185.  
  186. # собственно включаем монитор активности, если off то включается командой ^a M
  187. defmonitor off
  188.  
  189. # при копировании строки будут разделяться символами CR — LF    
  190. crlf off
  191.  
  192. # цвет фона при очистке, кстати имя терминала тоже меняется
  193. # поэтому настройку клавиатуры zsh надо проводить отдельно
  194. defbce on
  195.  
  196. # как же мы без скринсейвера
  197. # idle 30 eval "screen cmatrix -f -o -u 10" "idle 0"
  198.  
  199. # вешаем ^a + на увеличение окон на 3 и ^a - на уменьшение на 1
  200. # bind + resize +3
  201. # bind - resize -1
  202. # переключение табов по <--f11 f12-->
  203. bindkey -k k; next
  204. bindkey -k k9 prev
  205.  
  206. # имя файла для чтения и записи буфера обмена, по дефолту пишет
  207. # в /tmp/screen-exchange
  208. bufferfile ~/.bak/screen-exchange
  209.  
  210. # CUSTOM SECTION END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement