Commit 9ef97bd4 authored by Jérome Perrin's avatar Jérome Perrin

software/theia: enable color ls in bash

Similar to debian's default /etc/skel
parent ca934c72
Pipeline #26270 failed with stage
in 0 seconds
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
[instance-theia] [instance-theia]
_update_hash_filename_ = instance-theia.cfg.jinja.in _update_hash_filename_ = instance-theia.cfg.jinja.in
md5sum = 3148ee1ee1f20189628a538940f031aa md5sum = 58346c6b8f94e359d6749615f25b5e23
[instance] [instance]
_update_hash_filename_ = instance.cfg.in _update_hash_filename_ = instance.cfg.in
......
...@@ -482,6 +482,9 @@ output = $${directory:etc}/$${:_buildout_section_name_} ...@@ -482,6 +482,9 @@ output = $${directory:etc}/$${:_buildout_section_name_}
inline = inline =
# enable bash completion # enable bash completion
. ${bash-completion:location}/etc/profile.d/bash_completion.sh . ${bash-completion:location}/etc/profile.d/bash_completion.sh
# enable color for ls
eval "$(${coreutils:location}/bin/dircolors -b)"
alias ls='ls --color=auto'
# source user's .bashrc # source user's .bashrc
[ -f ~/.bashrc ] && . ~/.bashrc [ -f ~/.bashrc ] && . ~/.bashrc
depends = depends =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment