]> git.deb.at Git - debienna.git/blob - SebastianBachmann/Screenrc/index.mdwn
use unix newlines everywhere
[debienna.git] / SebastianBachmann / Screenrc / index.mdwn
1 .screenrc:
2 {{{
3 backtick 1 0 10   /usr/bin/cpu-screen
4 backtick 2 0 30   /usr/bin/ip-screen
5 backtick 3 0 5    /usr/local/bin/bat_state.pyc
6 backtick 4 0 5    /usr/local/bin/meminfo.pyc
7
8 # Wich screen windows should start
9 screen -t top 0 nice top
10 screen -t irssi 1 nice irssi
11 screen 2 zsh
12 # Local in META Screen by lefant
13 # screen -t localhost 1 screen -S local -d -RR 
14
15 # use %n to display the window number and %t for its title:
16   activity              "activity in %n (%t) [%w:%s]~"
17
18 # pass on the "beep" (CTRL-G) by adding a '~':
19   bell                  "bell     in %n (%t) [%w:%s]~"
20
21 # pow_detach_msg:       Message shown when session
22   pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended."
23
24 # vbell_msg:            Message shown when the
25   vbell_msg             " *beep* "
26
27
28 defutf8               on  
29 login                 off 
30 deflogin              off 
31 startup_message       off 
32 vbell                 on  
33 bell_msg        'Bell in %n'
34
35 termcapinfo xterm*|linux*|rxvt*|Eterm* OP
36
37 defscrollback         1000
38 #hardcopydir           ~/.screen
39 hardcopy_append       on  
40 shell                 zsh 
41
42 hardstatus alwayslastline
43 #caption always "%{wk}%?%-Lw%?%{kW}%n*%f %t%?(%u)%?%{wk}%?%+Lw"
44 caption always "%{b k}[ %{r}$USER@%{b}%H %{b}]%{w}[ %1` ]%{C}[ %4` ]%{B}[%= %2` %= ]%-62=%{Y}[ %{Y}%l ]%{b}[ %3` ]%{g}[ %0c ]%{w}[ %D %d.%m.%Y ]"
45 hardstatus string "%{g}%=%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%=%{g}"
46
47 sorendition 10 99 # default!
48
49 #idle 600 eval "screen cmatrix -o -f -u 9 -C red -s" "idle 0"
50
51 #usefull binds
52   bind 'K' kill
53   bind 'I' login on
54   bind 'O' login off
55   bind '}' history
56   bind Q quit
57   bind G screen -t 'google'    w3m www.google.com
58   bind H screen -t HeiseTicker w3m www.heise.de/newsticker/pda/data/paket4.html
59   bind X lockscreen
60 }}}
61
62 /usr/local/bin/bat_info.py (compile with py_compilefiles)
63 {{{
64
65 import re
66 import string
67
68 state = open("/proc/acpi/battery/BAT0/state","r").readlines()
69 info = open("/proc/acpi/battery/BAT0/info","r").readlines()
70
71
72 aktuell = string.join(re.findall("[0-9]", state[4]), '')
73 design = string.join(re.findall("[0-9]", info[1]), '')
74 full = string.join(re.findall("[0-9]", info[2]), '')
75
76 aktuell = float(aktuell)
77 design = float(design)
78 full = float(full)
79 print "%.2f | %.2f" %((100/(design/aktuell)), (100/(design/full)))
80 }}}
81
82 /usr/local/bin/meminfo.py
83 {{{
84 import re
85 import string
86
87 mem = open("/proc/meminfo","r").readlines()
88
89 all = float(string.join(re.findall("[0-9]",mem[0]), ''))/1048576
90 free = float(string.join(re.findall("[0-9]",mem[1]), ''))/1048576
91 swapall = float(string.join(re.findall("[0-9]",mem[11]), ''))/1048576
92 swapfree = float(string.join(re.findall("[0-9]",mem[12]), ''))/1048576
93
94 print "%.2f/%.2f | %.2f/%.2f" %(free,all,swapfree,swapall)
95 }}}
96
97
98 Get your ip-screen and cpu-screen from GRML!