For all those who like the terminal application “screen”, but didn’t know how to turn on some of its cool features.
http://blog.dustinkirkland.com/2008/12/ubuntu-server-includes-window-manager.html
To install a package built for Ubuntu, look in this PPA (Personal Package Archive).
To download the source code, run
bzr branch lp:screen-profiles
To build your own deb pkg:
- cd screen-profiles
- dpkg-checkbuilddeps
(This will tell you if you are missing any build dependencies without all the extra info that debuild spews out.) - Install any missing dependencies.
- debuild
- cd ..
- sudo dpkg -i screen-profiles_1.2_all.deb
To run it:
- select-screen-profile (This will prepend a line to your ~/.screenrc file.)
- screen
Troubleshooting:
- The Terminal app on MacOSX, sets the TERM env var to “xterm-color”, which will cause screen use a different code for the delete/backspace key and the fkeys than is needed (I don’t know who is in the wrong here). You can get around this problem by running: TERM=xterm screen
- Â If you are familiar with screen, the normal escape key to run screen commands is CTRL-a. This is changed to CTRL-g in screen-profiles, unless you are remapping it yourself further down in your ~/.screenrc file.

Atom Feed