From 54eb4c8f556a7144e6f9d53bb679ee08d7bad7a5 Mon Sep 17 00:00:00 2001 From: Salt Date: Sat, 1 Dec 2018 16:47:15 -0600 Subject: [PATCH] dircolors: Modify dircolors --- .config/dircolors | 104 ++++++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 46 deletions(-) diff --git a/.config/dircolors b/.config/dircolors index 2296e0e8..b0b0c0a3 100644 --- a/.config/dircolors +++ b/.config/dircolors @@ -1,12 +1,9 @@ -# Configuration file for dircolors, a utility to help you set the -# LS_COLORS environment variable used by GNU ls with the --color option. # Copyright (C) 1996-2018 Free Software Foundation, Inc. # Copying and distribution of this file, with or without modification, # are permitted provided the copyright notice and this notice are preserved. -# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the -# slackware version of dircolors) are recognized but ignored. -# Below are TERM entries, which can be a glob patterns, to match -# against the TERM environment variable to determine if it is colorizable. + +# Matched TERM variants + TERM Eterm TERM ansi TERM *color* @@ -31,50 +28,60 @@ TERM terminator TERM tmux* TERM vt100 TERM xterm* -# 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 # no color code at all -#FILE 00 # regular file: use no color at all -RESET 0 # reset to "normal" color -DIR 01;34 # directory -LINK 01;36 # symbolic link. (If you set this to 'target' instead of a - # numerical value, the color is as for the file pointed to.) -MULTIHARDLINK 00 # regular file with more than one link -FIFO 40;33 # pipe -SOCK 01;35 # socket -DOOR 01;35 # door -BLK 40;33;01 # block device driver -CHR 40;33;01 # character device driver -ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ... -MISSING 00 # ... and the files they point to -SETUID 37;41 # file that is setuid (u+s) -SETGID 30;43 # file that is setgid (g+s) -CAPABILITY 30;41 # file with capability -STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) -OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky -STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable -# This is for files with execute permission: -EXEC 01;32 -# List any file extensions like '.gz' or '.tar' that you would like ls -# to colorize below. Put the extension, a space, and the color init string. -# (and any comments you want to add after a '#') -# If you use DOS-style suffixes, you may want to uncomment the following: -#.cmd 01;32 # executables (bright green) -#.exe 01;32 -#.com 01;32 -#.btm 01;32 -#.bat 01;32 -# Or if you want to colorize scripts even if they do not have the -# executable bit actually set. -#.sh 01;32 -#.csh 01;32 - # archives or compressed (bright red) + +RESET 0 # reset to "normal" color + +# Basic file types + +NORMAL 00 +FILE 00 +DIR 01;34 +LINK 01;36 # Also accepts a value of "target" + +MULTIHARDLINK 00 +FIFO 40;33 +SOCK 01;35 +BLK 40;33;01 +CHR 40;33;01 + +ORPHAN 36;01;07 # symlink to nonexistent file, or non-stat'able file ... +MISSING 31;01 # ... and the files they point to + +EXEC 01;32 +SETUID 30;41 +SETGID 30;43 +CAPABILITY 30;41 # file with capability +STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) +OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky +STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable + +# DOS-Style Executables + +.cmd 32 +.exe 32 +.com 32 +.btm 32 +.bat 32 + +# Unix-Style Executables + +.sh 32 +.bash 32 +.csh 32 + +# Miscellaneous Executables + +.py 32 + +# Archives + .tar 01;31 .tgz 01;31 .arc 01;31 @@ -121,7 +128,9 @@ EXEC 01;32 .swm 01;31 .dwm 01;31 .esd 01;31 -# image formats + +# Images + .jpg 01;35 .jpeg 01;35 .mjpg 01;35 @@ -172,7 +181,9 @@ EXEC 01;32 # https://wiki.xiph.org/MIME_Types_and_File_Extensions .ogv 01;35 .ogx 01;35 -# audio formats + +# Audio + .aac 00;36 .au 00;36 .flac 00;36 @@ -190,3 +201,4 @@ EXEC 01;32 .opus 00;36 .spx 00;36 .xspf 00;36 +