Add .fluxbox/keys.
[dotfiles-framework.git] / src / .screenrc
1 # .screenrc startup file for GNU Screen
2 #
3 # note,
4 #   screen -x <identifier>
5 # will attatch you to a screen without detaching other clients, creating a
6 # multi-user session.  You can detach a single client from this session like
7 # you normally would with '^a d'.  However, if you ran 'screen -x ...' *from*
8 # another screen, the '^a d' will detach your *original* screen.  You can pass
9 # escaped commands on to deeper levels of screens with '^a a', which sends an
10 # '^a' to the process running inside your top level screen.  So '^a a d' will
11 # detach you from the multi-user screen running inside your base screen :p.
12 #
13 # there is a nice introduction by Chris Lumens, at
14 #   http://www.bangmoney.org/presentations/screen.html
15
16
17 # don't show the startup splash screen
18 startup_message off
19
20 # we're not graphical
21 unsetenv DISPLAY
22
23 # automatically detach on hangup.
24 autodetach on
25
26 # These keybindings always annoy me (and Steve :p): xon/xoff.
27 # Remove them.
28 bind ^Q
29 bind q
30 bind ^S
31 bind s 
32
33 # If a window goes unresponsive, don't block the whole session waiting for it.
34 nonblock on