diff options
Diffstat (limited to 'ship')
-rwxr-xr-x | ship/src/fix_dircolors | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ship/src/fix_dircolors b/ship/src/fix_dircolors new file mode 100755 index 00000000..57229210 --- /dev/null +++ b/ship/src/fix_dircolors @@ -0,0 +1,11 @@ +#!/bin/sh +#@core +exists dircolors || die "no dircolors in PATH, bailing out" + +info "fixing dircolors for $(id -un)" +dircolors -p > $HOME/.dircolors +sed -i 's/\(DIR \).*/\101;35/' $HOME/.dircolors +! grep -q 'dircolors' $HOME/.profile && \ + info "adding dircolors line to $HOME/.profile" && \ + echo 'eval `dircolors -b $HOME/.dircolors`' >> $HOME/.profile +info "done" |