Created
December 31, 2010 22:40
-
-
Save evnm/761392 to your computer and use it in GitHub Desktop.
CLI example of patching GNU Screen to support vertical window splitting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/screen co screen | |
$ curl http://old.evanmeagher.net/files/gnu-screen-vertsplit.patch > gnu-screen-vertsplit.patch | |
$ cd screen/src | |
$ patch < ../../gnu-screen-vertsplit.patch | |
$ ./configure --enable-locale --enable-telnet --enable-colors256 --enable-rxct_osc | |
$ make | |
$ sudo make install |
Fixed. Thanks, Jeremy! I unfortunately wasn't very responsible about updating links on my old site.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hiya, the URL needs need to be updated to: http://old.evanmeagher.net/files/gnu-screen-vertsplit.patch
Otherwise this patch works great! Thanks a bunch!