diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-04-10 12:39:43 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-04-10 12:39:43 +0200 |
commit | 968eb80c3fa1d3581186e47ff8d3c7a32aa6b577 (patch) | |
tree | 5a6e3dde8c1b325e2781c28644b9c7557ef669f3 | |
parent | 33fd0875249b867dffd256d4a3eeb41475511647 (diff) | |
download | myconfigs-968eb80c3fa1d3581186e47ff8d3c7a32aa6b577.tar.gz myconfigs-968eb80c3fa1d3581186e47ff8d3c7a32aa6b577.tar.bz2 myconfigs-968eb80c3fa1d3581186e47ff8d3c7a32aa6b577.zip |
Add screenrc
-rwxr-xr-x | install | 5 | ||||
-rw-r--r-- | screenrc | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -30,6 +30,11 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/git-prompt.sh ~/.local/ fi +read -p "Install configurations for various utility tools? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst screenrc ~/.screenrc +fi + read -p "Install user services? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/sbin/user-service.sh ~/.local/sbin/user-service.sh diff --git a/screenrc b/screenrc new file mode 100644 index 0000000..e456d12 --- /dev/null +++ b/screenrc @@ -0,0 +1,3 @@ +defscrollback 50000 +termcapinfo xterm* ti@:te@ +termcapinfo rxvt* ti@:te@ |