Results 1 to 2 of 2

Thread: Changing color scheme for shell

  1. #1
    Join Date
    Aug 2005
    Posts
    2

    Default Changing color scheme for shell

    You can change the colors assigned to the executable files, DIRs, jpeg files etc...

    You need to edit /etc/DIR_COLORS

    # Below are the color init strings for the basic file types. A color init
    # string consists of one or more of the following numeric codes:
    # Attribute codes:
    # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
    # Text color codes:
    # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
    # Background color codes:
    # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
    NORMAL 00 # global default, although everything should be something.
    FILE 00 # normal file
    DIR 01;34 # directory
    LINK 01;36 # symbolic link
    FIFO 40;33 # pipe
    SOCK 01;35 # socket
    BLK 40;33;01 # block device driver
    CHR 40;33;01 # character device driver
    ORPHAN 01;05;37;41 # orphaned syminks
    MISSING 01;05;37;41 # ... and the files they point to

  2. #2
    Join Date
    Jan 2012
    Posts
    5

    Default

    I just want to thank you for having a simple, concise explanation after each bash expression.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •