62be8437b1
- /home/dot_local/bin/executable_install-program - /home/.chezmoiscripts/linux/run_onchange_before_10-system-tweaks.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_25-gnome-extension-settings.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_4-environment-profile.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_5-log-config.tmpl - /software.yml
24 lines
816 B
Bash
24 lines
816 B
Bash
#!/usr/bin/env bash
|
|
|
|
{{ $homeDirs := (output "find" .host.homeParentFolder "-mindepth" "1" "-maxdepth" "1" "-type" "d") -}}
|
|
{{- range $homeDir := splitList "\n" $homeDirs -}}
|
|
{{- if ne $homeDir "" -}}
|
|
# home dir: {{ $homeDir }}
|
|
{{ end -}}
|
|
{{- end }}
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
find /home -mindepth 1 -maxdepth 1 -type d | while read HOME_DIR; do
|
|
USER_FOLDER="$(echo "$HOME_DIR" | sed 's/.*\/\([^\/]*\)$/\1/')"
|
|
if [ -d "$HOME_DIR/.local" ]; then
|
|
if [ ! -d "/var/log/user/$USER_FOLDER" ]; then
|
|
if [ ! -d "$HOME_DIR/.local/log" ]; then
|
|
mkdir -p "$HOME_DIR/.local/log"
|
|
fi
|
|
sudo ln -s "$HOME_DIR/.local/log" "/var/log/user/$USER_FOLDER"
|
|
logg success 'Symlinked /var/log/user/'"$USER_FOLDER"' to ~/.local/log'
|
|
fi
|
|
fi
|
|
done
|