]> git.deb.at Git - debienna.git/blob - AlexanderGanster/ScreenConfig/index.mdwn
conerted moin to mdwn format
[debienna.git] / AlexanderGanster / ScreenConfig / index.mdwn
1
2 Here's my current UNIX screen config. Since I'm sharing parts of my config with other people I'm sourcing a user-specific file at the end of the first config file: 
3
4 that's my .screenrc 
5
6
7 [[!format txt """
8 screen 0 zsh
9
10 defutf8               on
11 deflogin              off
12 startup_message       off
13 vbell                 on
14 nethack on
15 bell_msg        'Bell in %n'
16 altscreen off
17
18 termcapinfo xterm*|linux*|rxvt*|Eterm* OP
19
20 defscrollback         1000
21 shell                 zsh
22
23
24 sorendition 10 99 # default!
25
26 #idle 600 eval "screen cmatrix -o -f -u 9 -C red -s" "idle 0"
27
28 #caption always "%{w$SCREEN_CAPTION_COLOR}%?%-Lw%?%{kW}%n*%f %t%?(%u)%?%{w$SCREEN_CAPTION_COLOR}%?%+Lw"
29
30 ################################### Alex
31 source ./screenrc-$USER
32
33 """]]
34 And that's the second part of the config which is user-specific: 
35 [[!format txt """
36 autodetach on
37 defscrollback 5000
38
39 # Set messages timeout
40 msgwait 2
41 activity "Activity in %n (%t) [%w:%s]~"
42 bell_msg "Trouble in %n!"
43 vbell_msg "Beep Beep ..."
44 pow_detach_msg "BYE"
45
46 # Ctrl-PageUp/Down or Alt-PageUp/Down or Alt-left/right
47 bindkey ^[[5;5~ prev
48 bindkey ^[[6;5~ next
49 bindkey ^[[5;3~ prev
50 bindkey ^[[6;3~ next
51 bindkey ^[[1;3D prev
52 bindkey ^[[1;3C next
53
54 #scrolling
55 termcapinfo xterm* ti@:te@
56
57 multiuser on
58 # allow the following people full control
59 # addacl unki, lefant
60 #aclchg aledesma +rwx "#?"
61
62 # show a window list at the bottom of the
63 hardstatus alwayslastline
64
65 # not so beauty
66 #hardstatus string '%{= mK}%-Lw%{= KW}%50>%n%f* %t%{= mK}%+Lw%< %{= kG}%-=%D %d %M %Y %c:%s%{-}'
67
68 # nice one with clock, but causes much traffic (seconds)
69 #hardstatus string '%{= kG}%-Lw%{= kW}%50> %n%f* %t%{= kG}%+Lw%< %{= kG}%-=%c:%s%{-}'
70
71 # looks quite good - my fav
72 hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}][%{Y}%l%{g}]%{=b C}[ %c ]%{W}'
73
74 # get info at
75 # http://www.delorie.com/gnu/docs/screen/screen_toc.html
76 # http://gentoo-wiki.com/TIP_Using_screen
77
78 """]]
79 If you want you can also put the entire config into one file....