diff options
-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@ |