commit c603626efbbbfa69f3e00727669da3d100106b52
parent 7dfbdc94abc9fb13a51141fd3ab62fd033a35921
Author: oscarbenedito <oscar@obenedito.org>
Date: Wed, 22 Jan 2020 16:11:07 +0100
Fixes hostnames for FME
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dot_bash_aliases.tmpl.md b/dot_bash_aliases.tmpl.md
@@ -18,7 +18,7 @@ alias clear="printf '\033c'"
Alias to update the system, diferent for Debian or Arch.
``` file dot_bash_aliases.tmpl
-{{ if ne .chezmoi.hostname "cfis" -}}
+{{ if ne .chezmoi.hostname "fme-desktop" -}}
alias upgrade="
{{- if eq .chezmoi.osRelease.id "debian" -}}
sudo apt-get update && sudo apt-get upgrade
@@ -30,7 +30,7 @@ alias upgrade="
Alias to run VSCode on computer where I can't install programs
``` file dot_bash_aliases.tmpl
-{{- if eq .chezmoi.hostname "cfis" -}}
+{{- if eq .chezmoi.hostname "fme-desktop" -}}
alias vscode="$HOME/KOLMOGOROV/VSCode-linux-x64/bin/code"
{{- end }}
```