Announcement

Collapse
No announcement yet.

How to inhibit Konsole text colors

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to inhibit Konsole text colors

    I have settings > current profile > appearnce set to black on light yellow, but text comes out in all sorts of unreadably light colors. How do I tell i to use black all the time.

    This seems to have something to do with dircolors, but I do not see what.
    'I must have a prodigious quantity of mind; it takes me as much as a week sometimes to make it up.' Mark Twain

    #2
    if you do not want dircolors in your terminal ..........go to your .bashrc and find the lines

    # enable color support of ls and also add handy aliases
    if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
    fi
    and coment out those alias's that you do not want to use dircolors with.

    or if you do not want to permanently disable the dircolors then use ls like this "ls --colors=no"

    VINNY
    i7 4core HT 8MB L3 2.9GHz
    16GB RAM
    Nvidia GTX 860M 4GB RAM 1152 cuda cores

    Comment


      #3
      Great! Thanks.
      'I must have a prodigious quantity of mind; it takes me as much as a week sometimes to make it up.' Mark Twain

      Comment

      Working...
      X