dircolors: Modify dircolors
This commit is contained in:
parent
fdee1f092f
commit
54eb4c8f55
@ -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.
|
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||||
# Copying and distribution of this file, with or without modification,
|
# Copying and distribution of this file, with or without modification,
|
||||||
# are permitted provided the copyright notice and this notice are preserved.
|
# 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.
|
# Matched TERM variants
|
||||||
# Below are TERM entries, which can be a glob patterns, to match
|
|
||||||
# against the TERM environment variable to determine if it is colorizable.
|
|
||||||
TERM Eterm
|
TERM Eterm
|
||||||
TERM ansi
|
TERM ansi
|
||||||
TERM *color*
|
TERM *color*
|
||||||
@ -31,50 +28,60 @@ TERM terminator
|
|||||||
TERM tmux*
|
TERM tmux*
|
||||||
TERM vt100
|
TERM vt100
|
||||||
TERM xterm*
|
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:
|
# Attribute codes:
|
||||||
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||||
# Text color codes:
|
# Text color codes:
|
||||||
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||||
# Background color codes:
|
# Background color codes:
|
||||||
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
# 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
|
RESET 0 # reset to "normal" color
|
||||||
DIR 01;34 # directory
|
|
||||||
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
|
# Basic file types
|
||||||
# numerical value, the color is as for the file pointed to.)
|
|
||||||
MULTIHARDLINK 00 # regular file with more than one link
|
NORMAL 00
|
||||||
FIFO 40;33 # pipe
|
FILE 00
|
||||||
SOCK 01;35 # socket
|
DIR 01;34
|
||||||
DOOR 01;35 # door
|
LINK 01;36 # Also accepts a value of "target"
|
||||||
BLK 40;33;01 # block device driver
|
|
||||||
CHR 40;33;01 # character device driver
|
MULTIHARDLINK 00
|
||||||
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
|
FIFO 40;33
|
||||||
MISSING 00 # ... and the files they point to
|
SOCK 01;35
|
||||||
SETUID 37;41 # file that is setuid (u+s)
|
BLK 40;33;01
|
||||||
SETGID 30;43 # file that is setgid (g+s)
|
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
|
CAPABILITY 30;41 # file with capability
|
||||||
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
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
|
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
|
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
||||||
# This is for files with execute permission:
|
|
||||||
EXEC 01;32
|
# DOS-Style Executables
|
||||||
# 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.
|
.cmd 32
|
||||||
# (and any comments you want to add after a '#')
|
.exe 32
|
||||||
# If you use DOS-style suffixes, you may want to uncomment the following:
|
.com 32
|
||||||
#.cmd 01;32 # executables (bright green)
|
.btm 32
|
||||||
#.exe 01;32
|
.bat 32
|
||||||
#.com 01;32
|
|
||||||
#.btm 01;32
|
# Unix-Style Executables
|
||||||
#.bat 01;32
|
|
||||||
# Or if you want to colorize scripts even if they do not have the
|
.sh 32
|
||||||
# executable bit actually set.
|
.bash 32
|
||||||
#.sh 01;32
|
.csh 32
|
||||||
#.csh 01;32
|
|
||||||
# archives or compressed (bright red)
|
# Miscellaneous Executables
|
||||||
|
|
||||||
|
.py 32
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
|
||||||
.tar 01;31
|
.tar 01;31
|
||||||
.tgz 01;31
|
.tgz 01;31
|
||||||
.arc 01;31
|
.arc 01;31
|
||||||
@ -121,7 +128,9 @@ EXEC 01;32
|
|||||||
.swm 01;31
|
.swm 01;31
|
||||||
.dwm 01;31
|
.dwm 01;31
|
||||||
.esd 01;31
|
.esd 01;31
|
||||||
# image formats
|
|
||||||
|
# Images
|
||||||
|
|
||||||
.jpg 01;35
|
.jpg 01;35
|
||||||
.jpeg 01;35
|
.jpeg 01;35
|
||||||
.mjpg 01;35
|
.mjpg 01;35
|
||||||
@ -172,7 +181,9 @@ EXEC 01;32
|
|||||||
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
.ogv 01;35
|
.ogv 01;35
|
||||||
.ogx 01;35
|
.ogx 01;35
|
||||||
# audio formats
|
|
||||||
|
# Audio
|
||||||
|
|
||||||
.aac 00;36
|
.aac 00;36
|
||||||
.au 00;36
|
.au 00;36
|
||||||
.flac 00;36
|
.flac 00;36
|
||||||
@ -190,3 +201,4 @@ EXEC 01;32
|
|||||||
.opus 00;36
|
.opus 00;36
|
||||||
.spx 00;36
|
.spx 00;36
|
||||||
.xspf 00;36
|
.xspf 00;36
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user