My dotfiles utilizing Chezmoi for management https://www.chezmoi.io/
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.
 
 

8 lines
502 B

{{ if (and (eq .chezmoi.os "linux") (hasKey . "firefox")) -}}
#!/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 -}}