From cfb49e878179cbb0815d4affdc30ccdc6e069a88 Mon Sep 17 00:00:00 2001 From: JD239 Date: Mon, 9 Jul 2012 23:34:51 +0300 Subject: [PATCH] The color scheme defined in `/etc/profile.d/shell.conf` makes most of the text white. This is quite hard to read on a white background. The file itself is readonly and I can't seem to override it with a `.bashrc` or `.bash_profile`. This commit allows the client terminal to set its preferred text color. --- packages/sysutils/busybox/profile.d/shell.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/profile.d/shell.conf b/packages/sysutils/busybox/profile.d/shell.conf index 35605c8f9f..468a3bb085 100644 --- a/packages/sysutils/busybox/profile.d/shell.conf +++ b/packages/sysutils/busybox/profile.d/shell.conf @@ -23,7 +23,7 @@ # evironment variables that are not user defined. ################################################################################ -PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] \[\e[1;37m\]' +PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] ' export PS1 TERM="linux"