chore(shell): migrate the shell themes to tinted-theming

This commit is contained in:
Ade Attwood 2023-02-09 19:32:42 +00:00
parent eb1660d9e1
commit 80f044f1a0
2 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ printf '\033[5 q'
#
if [[ -z "$VIM" ]] && [[ -z "$INSIDE_EMACS" ]] && [[ -z "$SSH_TTY" ]] ; then
BASE16_SHELL="$HOME/.config/base16-shell/"
[ -s "$BASE16_SHELL/profile_helper.sh" ] && eval "$("$BASE16_SHELL/profile_helper.sh")"
[ -s "$BASE16_SHELL/profile_helper.sh" ] && source "$BASE16_SHELL/profile_helper.sh"
fi
#

View file

@ -1,8 +1,8 @@
class core::terminal {
vcsrepo { "${user_home}/.config/base16-shell":
ensure => latest,
source => 'https://github.com/chriskempson/base16-shell.git',
source => 'https://github.com/tinted-theming/base16-shell.git',
provider => git,
revision => 'master',
revision => 'main',
}
}