dextra

dynamic window manager extra repository, themes, styles, dotfiles
git clone git://git.suckless.org/dextra
Log | Files | Refs | LICENSE

dir_colors (2673B)


      1 # markus schnalke -- http://marmaro.de
      2 # Configuration file for dircolors, a utility to help you set the
      3 # LS_COLORS environment variable used by GNU ls with the --color option.
      4 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
      5 # slackware version of dircolors) are recognized but ignored.
      6 # Below, there should be one TERM entry for each termtype that is colorizable
      7 TERM linux
      8 TERM linux-c
      9 TERM mach-color
     10 TERM console
     11 TERM con132x25
     12 TERM con132x30
     13 TERM con132x43
     14 TERM con132x60
     15 TERM con80x25
     16 TERM con80x28
     17 TERM con80x30
     18 TERM con80x43
     19 TERM con80x50
     20 TERM con80x60
     21 TERM cygwin
     22 TERM dtterm
     23 TERM mlterm
     24 TERM putty
     25 TERM xterm
     26 TERM xterm-color
     27 TERM xterm-debian
     28 TERM rxvt
     29 TERM rxvt-unicode
     30 TERM screen
     31 TERM screen-bce
     32 TERM screen-w
     33 TERM vt100
     34 TERM Eterm
     35 
     36 # Below are the color init strings for the basic file types. A color init
     37 # string consists of one or more of the following numeric codes:
     38 # Attribute codes:
     39 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
     40 # Text color codes:
     41 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
     42 # Background color codes:
     43 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
     44 NORMAL 00 # global default, although everything should be something.
     45 FILE 00 # normal file
     46 DIR 01;34 # directory
     47 LINK target # symbolic link. (If you set this to 'target' instead of a
     48 FIFO 40;33 # pipe
     49 SOCK 01;35 # socket
     50 DOOR 01;35 # door
     51 BLK 40;33;01 # block device driver
     52 CHR 40;33;01 # character device driver
     53 ORPHAN 40;31;01 # symlink to nonexistent file
     54 
     55 SETUID 37;41 # file that is setuid (u+s)
     56 SETGID 30;43 # file that is setgid (g+s)
     57 STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
     58 OTHER_WRITABLE 41;42 # dir that is other-writable (o+w) and not sticky
     59 STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
     60 EXEC 01;32 # This is for files with execute permission
     61 
     62 # List any file extensions like '.gz' or '.tar' that you would like ls
     63 # to colorize below. Put the extension, a space, and the color init string.
     64 # (and any comments you want to add after a '#')
     65 # If you use DOS-style suffixes, you may want to uncomment the following:
     66 # archives or compressed (bright red)
     67 .tar 00;31
     68 .tgz 00;31
     69 .arj 00;31
     70 .taz 00;31
     71 .lzh 00;31
     72 .zip 00;31
     73 .z 00;31
     74 .Z 00;31
     75 .gz 00;31
     76 .bz2 00;31
     77 .deb 00;31
     78 .rpm 00;31
     79 .jar 00;31
     80 
     81 # image formats
     82 .jpg 01;35
     83 .jpeg 01;35
     84 .gif 01;35
     85 .bmp 01;35
     86 .pbm 01;35
     87 .pgm 01;35
     88 .ppm 01;35
     89 .tga 01;35
     90 .xbm 01;35
     91 .xpm 01;35
     92 .tif 01;35
     93 .tiff 01;35
     94 .png 01;35
     95 .mov 01;35
     96 .mpg 01;35
     97 .mpeg 01;35
     98 .avi 01;35
     99 .fli 01;35
    100 .gl 01;35
    101 .dl 01;35
    102 .xcf 01;35
    103 .xwd 01;35
    104 
    105 # audio formats
    106 .flac 01;35
    107 .mp3 01;35
    108 .mpc 01;35
    109 .ogg 01;35
    110 .wav 01;35