39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
|
# Email
|
||
|
ADDRESS="e.litherlandsmith@proton.me"
|
||
|
secret-tool lookup email "$ADDRESS" >/dev/null || (
|
||
|
echo "Insert pass from protonmail-bridge"
|
||
|
secret-tool store --label="Proton Mail mbsync" email "$ADDRESS"
|
||
|
)
|
||
|
|
||
|
ADDRESS="e.litherlandsmith@icloud.com"
|
||
|
secret-tool lookup email "$ADDRESS" >/dev/null || (
|
||
|
pass show identity/apple.com/mbsync |
|
||
|
head -n1 |
|
||
|
secret-tool store --label="iCloud mbsync" email "$ADDRESS"
|
||
|
)
|
||
|
|
||
|
ADDRESS="evie.litherland-smith@ukaea.uk"
|
||
|
secret-tool lookup email "$ADDRESS" >/dev/null || (
|
||
|
pass show work/microsoftonline.com |
|
||
|
head -n1 |
|
||
|
secret-tool store --label="Outlook mbsync" email "$ADDRESS"
|
||
|
)
|
||
|
|
||
|
# Calendar
|
||
|
URL="dav.xenia.me.uk"
|
||
|
USER="pixelifytica"
|
||
|
secret-tool lookup url "$URL" user "$USER" >/dev/null || (
|
||
|
pass show "server/xenia.me.uk/$URL" |
|
||
|
head -n1 |
|
||
|
secret-tool store --label="Personal calendar vdirsyncer" url "$URL" user "$USER"
|
||
|
)
|
||
|
|
||
|
# Spotify
|
||
|
URL="spotify.com"
|
||
|
USER="pixelifytica"
|
||
|
secret-tool lookup url "$URL" user "$USER" >/dev/null || (
|
||
|
pass show media/spotify.com |
|
||
|
head -n1 |
|
||
|
secret-tool store --label="Spotify" url "$URL" user "$USER"
|
||
|
)
|