Compare commits

...

2 Commits

Author SHA1 Message Date
Heavy
81a8758904 (music): Add alias for music player. 2024-10-31 07:07:54 +01:00
Heavy
b118673ce2 (ignore): Ignoring Windows documents on Linux. 2024-10-31 07:07:54 +01:00
2 changed files with 11 additions and 1 deletions

View File

@ -8,9 +8,16 @@ vim-lightline.tar.gz
.local/share/bash-completion/completions/rustup .local/share/bash-completion/completions/rustup
{{- end }} {{- end }}
{{- if eq .chezmoi.os "windows" }} # nvim uses different configuration folders on Windows and Linux
# on raspberry pi, the version is too old at the moment, to use lua configuration
{{- if (or (eq .chezmoi.os "windows") (eq .chezmoi.osRelease.id "raspbian")) }}
.config/nvim .config/nvim
{{- end }} {{- end }}
{{- if eq .chezmoi.os "linux" }} {{- if eq .chezmoi.os "linux" }}
AppData/ AppData/
{{- end }} {{- end }}
# Ignore Powershell configuration on linux
{{- if eq .chezmoi.os "linux" }}
Documents/PowerShell
{{- end }}

View File

@ -105,3 +105,6 @@ fi
if [ -x /usr/bin/vcgencmd ]; then if [ -x /usr/bin/vcgencmd ]; then
alias pi-temp='vcgencmd measure_temp' alias pi-temp='vcgencmd measure_temp'
fi fi
if [ -x /usr/bin/ncmpcpp ]; then
alias music='/usr/bin/ncmpcpp '
fi