Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
08-30-2003, 09:32 AM
|
#1
|
Member
Registered: Aug 2003
Location: Romania
Distribution: Ubuntu 6.06
Posts: 278
Rep:
|
colored shell
I tried to make my promter colored by adding the next code to the .bashrc file
function myprompt{
local GRAD1=`tty|cut -d/ -f3`
local COLOR1="\[\033[1;34m\]"
local COLOR2="\[\033[0;34m\]"
local COLOR3="\[\033[1;36m\]"
local COLOR4="\[\033[0m\]"
local COLOR5="\[\033[1;32m\]"
local COLOR6="\[\033[0;32m\]"
case $TERM in
*term* | rxvt )
PS1="$COLOR1[$COLOR3\$(date +%I:%M) $COLOR3\u \w$COLOR1]$COLOR3\$$COLOR4 \[\033]0;\u \w\007\]" ;;
*)
PS1="$COLOR1[$COLOR3\$(date +%I:%M) $COLOR3\u \w$COLOR1]$COLOR3\$$COLOR4 "
#PS2="$COLOR2-$COLOR1-$COLOR3-$COLOR4 " ;;
#PS2='[\w]\$ ';;
PS2="[$(date +%I:%M) \u \w]\$ \[\033]0;\u \w\007\]" ;;
esac
}
myprompt
and when I try to open the new shell it gives me the next error:
# bash: /home/spank/.bashrc: line 11: syntax error near unexpected token `local'
# bash: /home/spank/.bashrc: line 11: `local GRAD1=`tty|cut -d/ -f3`'
PS: how can I change the directory ls color.. I have RH9 and the blue color doesn't read very well
|
|
|
08-30-2003, 09:57 AM
|
#2
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
Here is my .bashrc file for a comparison.
Code:
# Duron 950 uilleann .bashrc for user fancy
# User specific aliases and functions
# Change bash prompt. See the article
# http://www-106.ibm.com/developerwork.../l-tip-prompt/
export PS1='\d \@ \[\e[32;1m\]\u\[\e[34;1m\]@\[\e[36;1m\]\H \[\e[34;1m\]\w\[\e[32;1m\] $ \[\e[0m\]'
# For the root account use this
# export PS1='\d \@ \[\e[31;1m\]\u\[\e[34;1m\]@\[\e[36;1m\]\H \[\e[34;1m\]\w\[\e[31;1m\] # \[\e[0m\]'
# Set paths
alias path='echo -e ${PATH//:/\\n}'
# Allow local users to use my X session
# xhost +local:
# Dialup, start fetchmail daemon and startx
alias x='/sbin/ifup ppp0;fetchmail -d 300;startx'
# Alter the ls command
alias ls='ls -ac'
alias lls='ls -lac'
# Become system administrator
alias god='su -'
# Connect/disconnect the internet by modem
alias dial='/sbin/ifup ppp0'
alias hangup='/sbin/ifdown ppp0'
# Launch links with my linux links page
alias links='links /pub/fancy/bookmarks.html'
# Power down/reboot
alias off='shutdown -h now'
alias boot='shutdown -r now'
# For nano editor because I forget which one I use in which distro
alias pico='nano -w'
alias nano='nano -w'
# Script needs to be on the bottom of the file or RH updates will fsck it up
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
|
|
|
08-30-2003, 06:40 PM
|
#3
|
Senior Member
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Rep:
|
You asked this in another forum. This prompt is one I posted on another thread (and I am currently using in my .bashrc and it works fine) except you added a line which bash is telling you is getting the error.
Delete the line
local GRAD1=`tty|cut -d/ -f3`
and do
source .bashrc
|
|
|
08-31-2003, 02:18 AM
|
#4
|
Member
Registered: Apr 2003
Distribution: Debian Sarge
Posts: 259
Rep:
|
You can change the directory color by editing the LS_COLORS environment variable. Just run
$ env
and you'll see it. The directory color is "di".
|
|
|
All times are GMT -5. The time now is 06:36 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|