e58f91cb9e
- /home/dot_local/bin/run_onchange_ensure-executable.tmpl - /home/dot_local/share/ansible/run_onchange_after_symlink-ansible-configs.tmpl - /home/dot_ssh/run_onchanges_after_ensure-private-key.tmpl - /home/dot_ssh/run_onchanges_after_generate-public-keys.tmpl - /home/Library/Fonts/run_onchange_after_add-fonts.tmpl - /system/usr/share/run_onchange_after_setup-share-folder - /system/usr/local/share/run_onchange_after_setup-share-folder - /system/var/log/user/run_onchange_after-symlink-user-logs - /system/etc/default/modify_grub
16 lines
515 B
Bash
16 lines
515 B
Bash
#!/usr/bin/env bash
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
{{ $exeFiles := (output "find" (joinPath .chezmoi.homeDir ".local" "bin") "-mindepth" "1" "-maxdepth" "1" "-type" "f") -}}
|
|
{{- range $exeFile := splitList "\n" $exeFiles -}}
|
|
{{- if ne $exeFile "" -}}
|
|
# {{ $exeFile }}
|
|
{{ end -}}
|
|
{{- end }}
|
|
|
|
logg info 'Ensuring all files in ~/.local/bin are executable'
|
|
find "$HOME/.local/bin" -mindepth 1 -maxdepth 1 -type f | while read EXE_FILE; do
|
|
chmod +x "$EXE_FILE"
|
|
done
|