You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{{ if (and (eq .chezmoi.os "linux") (hasKey . "firefox") (hasKey .firefox "profile_name")) -}}
|
|
#!/usr/bin/env bash
|
|
|
|
rsync -a {{ .chezmoi.homeDir }}/.mozilla/firefox/personal-profile.default/* {{ .chezmoi.homeDir }}/.mozilla/firefox/{{ .firefox.profile_name }}/.
|
|
|
|
cd {{ .chezmoi.homeDir }}/.mozilla/firefox/personal-profile.default
|
|
/usr/bin/env bash updater.sh -p {{ .chezmoi.homeDir }}/.mozilla/firefox/{{ .firefox.profile_name }}/ -o {{ .chezmoi.homeDir }}/.mozilla/firefox/personal-profile.default/user-overrides.js -d -s
|
|
{{ end -}}
|