X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fdircolors.in;h=7e194b7302f11f557b079dde24a153da4ab9ea72;hb=HEAD;hp=bba92e6bfbec01467966806e5ca0c04c817b8917;hpb=4bcae02cfd13f42ff10cfef0f6400b98b73de336;p=config%2Fdotfiles.git diff --git a/shell/dircolors.in b/shell/dircolors.in deleted file mode 100644 index bba92e6..0000000 --- a/shell/dircolors.in +++ /dev/null @@ -1,80 +0,0 @@ -# Color settings for GNU ls. Read by `dircolors` to write the $LS_COLORS -# environment variable. - -# Copyright (C) 2013 Simon Ruderich -# -# This file is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This file is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this file. If not, see . - - -# See `dircolors --print-database` for possible colors. - -RESET 00 -# Normal files: no color. -NORMAL 00 - -# Regular files: normal. -FILE 00 -# Executable files: bold red. -EXEC 31;01 - -# Symbolic links: cyan (other possible value: "target", color based on target -# type). -LINK 36 -# Orphaned symbolic links (nonexistent or not-statable): cyan with red -# background. -ORPHAN 36;41 - -# setuid and setgid files: bold red with yellow background (red because they -# are executables). -SETUID 31;43;01 -SETGID 31;43;01 - -# Directories: bold blue. -DIR 34;01 -# Directories writable by other users and not sticky: bold blue with red -# background. -OTHER_WRITABLE 34;41;01 -# Directories with sticky bit and writable by others: bold blue with green -# background. -STICKY_OTHER_WRITABLE 34;42;01 -# Directories with sticky bit and not writable by others: bold blue with -# yellow background. -STICKY 34;43;01 - -# Named pipes: normal. -FIFO 00 -# Sockets: normal. -SOCK 00 -# Block devices: normal. -BLK 00 -# Character devices: normal. -CHR 00 - - -# Color important files which might be overlooked in full directories. `ls` -# can't color matching files, only matching extensions; therefore use the -# filename as extension. As most filenames have no weird extensions like -# ".README", this should work fine. - -# Read-me files (e.g. README, program.readme, etc.): bold magenta. -*README 35;01 -*readme 35;01 -.README 35;01 -.readme 35;01 -# Misc files: bold magenta. -*NEWS 35;01 -*TODO 35;01 -*todo 35;01 - -# vim: ft=dircolors