Update file Taskfile.yml
This commit is contained in:
parent
68b5742068
commit
973f3dd7d4
1 changed files with 106 additions and 12 deletions
|
@ -41,6 +41,7 @@ tasks:
|
|||
printf '%s' "$(echo "$selected" | jq -r '.login.password')" | $COPY
|
||||
|
||||
brave:profile:backup:
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Brave Browser
|
||||
RcloneRepository: brave
|
||||
|
@ -65,6 +66,22 @@ tasks:
|
|||
RcloneRepository: brave
|
||||
|
||||
brave:profile:restore:
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Brave Browser
|
||||
RcloneRepository: brave
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
|
@ -74,8 +91,9 @@ tasks:
|
|||
RcloneRepository: brave
|
||||
|
||||
chrome:profile:backup:
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Chrome
|
||||
AppName: Google Chrome
|
||||
RcloneRepository: chrome
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Backup
|
||||
|
@ -93,11 +111,27 @@ tasks:
|
|||
cmds:
|
||||
- task: profile:backup
|
||||
vars:
|
||||
AppName: Chrome
|
||||
AppName: Google Chrome
|
||||
ProfileFolder: ~/Library/Application Support/Google/Chrome/Default
|
||||
RcloneRepository: chrome
|
||||
|
||||
chrome:profile:restore:
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Google Chrome
|
||||
RcloneRepository: chrome
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
|
@ -107,6 +141,7 @@ tasks:
|
|||
RcloneRepository: chrome
|
||||
|
||||
edge:profile:backup:
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Microsoft Edge
|
||||
RcloneRepository: edge
|
||||
|
@ -131,6 +166,22 @@ tasks:
|
|||
RcloneRepository: edge
|
||||
|
||||
edge:profile:restore:
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Microsoft Edge
|
||||
RcloneRepository: edge
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
|
@ -140,7 +191,7 @@ tasks:
|
|||
RcloneRepository: edge
|
||||
|
||||
ferdium:profile:backup:
|
||||
desc: Imports the user's Ferdium profile from the CloudFlare R2 Restic repository for Ferdium
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Ferdium
|
||||
RcloneRepository: ferdium
|
||||
|
@ -165,17 +216,22 @@ tasks:
|
|||
RcloneRepository: ferdium
|
||||
|
||||
ferdium:profile:restore:
|
||||
desc: Imports the user's Ferdium profile from the CloudFlare R2 Restic repository for Ferdium
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Ferdium
|
||||
RcloneRepository: ferdium
|
||||
summary: |
|
||||
# Ferdium Profile Import
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports the Ferdium profile from the Restic repository if it exists. In order to use this
|
||||
command for the first time, you should initialize Ferdium by opening the application. Then, after making
|
||||
any changes you wish to be saved, you should backup the Ferdium profile to the CloudFlare R2 user bucket
|
||||
by running the `ferdium:profile:import` task first.
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The Ferdium backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
The backup uses Restic so all the functionality that Restic offers is available with backups made by this command.
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
|
@ -185,6 +241,7 @@ tasks:
|
|||
RcloneRepository: ferdium
|
||||
|
||||
firefox:profile:backup:
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Firefox
|
||||
RcloneRepository: firefox
|
||||
|
@ -209,7 +266,23 @@ tasks:
|
|||
RcloneRepository: firefox
|
||||
|
||||
firefox:profile:restore:
|
||||
cmds:
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: Firefox
|
||||
RcloneRepository: firefox
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
AppFolder: /Applications/Firefox.app
|
||||
|
@ -228,6 +301,7 @@ tasks:
|
|||
echo -e " \e[9mStrikethrough\e[0m"
|
||||
|
||||
librewolf:profile:backup:
|
||||
desc: Backs up the user's {{ .AppName }} profile to the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: LibreWolf
|
||||
RcloneRepository: librewolf
|
||||
|
@ -252,6 +326,22 @@ tasks:
|
|||
RcloneRepository: librewolf
|
||||
|
||||
librewolf:profile:restore:
|
||||
desc: Restores the user's {{ .AppName }} profile from the user's S3-backed Restic repository
|
||||
vars:
|
||||
AppName: LibreWolf
|
||||
RcloneRepository: librewolf
|
||||
summary: |
|
||||
# {{ .AppName }} Profile Import / Restore
|
||||
|
||||
This command imports / restores the {{ .AppName }} profile from the S3 Restic repository, if it exists. In order to use this
|
||||
command for the first time, you should initialize {{ .AppName }} by opening the application. You should also customize
|
||||
the application by applying your preferred settings (i.e. customize it how you want it to open in the future). Then, after making
|
||||
any changes you wish to be saved, you can backup the {{ .AppName }} profile to the user's S3 bucket
|
||||
by running the `{{ .RcloneRepository }}:profile:backup` task. After this is done, you can restore the application
|
||||
settings by running this command (i.e. `{{ .RcloneRepository }}:profile:restore`).
|
||||
|
||||
The {{ .AppName }} backup is encrypted with the same key that Chezmoi uses (stored in `~/.config/age/chezmoi.txt`, by default).
|
||||
Since the backup leverages Restic, you can leverage all the functionality that Restic offers if something goes awry.
|
||||
cmds:
|
||||
- task: profile:restore
|
||||
vars:
|
||||
|
@ -313,6 +403,10 @@ tasks:
|
|||
```
|
||||
find . -type l -exec 'run squash-symlink --' {} +
|
||||
```
|
||||
|
||||
## TODO
|
||||
|
||||
Test and fix this so it can be accessed by `run squash-symlink -- $PATH`
|
||||
cmds:
|
||||
- |
|
||||
set -e
|
||||
|
|
Loading…
Reference in a new issue