From 199e9476aaed56f501082d3ee3bdf0c85b1f0d3c Mon Sep 17 00:00:00 2001 From: L3D Date: Sat, 6 Apr 2024 20:17:51 +0200 Subject: [PATCH] update template --- roles/dotfiles/templates/dotbashrc.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/dotfiles/templates/dotbashrc.j2 b/roles/dotfiles/templates/dotbashrc.j2 index 7999b3f..814a343 100644 --- a/roles/dotfiles/templates/dotbashrc.j2 +++ b/roles/dotfiles/templates/dotbashrc.j2 @@ -14,7 +14,7 @@ export PATH # enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" -{% for alias in dotfiles__aliases %} +{% for alias in l3d_users__dotfiles__aliases %} {% if alias.color %} alias {{ alias.alias }}="{{ alias.command }} --color=auto" {% endif %}