2019-10-26 17:05:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
export PASS_LIBREFM="$(pass entertainment/libre.fm | head -n 1)"
|
|
|
|
export PASS_MUSICBRAINZ="$(pass entertainment/musicbrainz.org | head -n 1)"
|
|
|
|
export PASS_LISTENBRAINZ="$(pass entertainment/musicbrainz.org | rg 'listenbrainz_token' | cut -d' ' -f2-)"
|
|
|
|
export PASS_MUSPY="$(pass entertainment/muspy.com | head -n 1)"
|
|
|
|
export PASS_ARIA2="$(pass linux/aria2 | head -n 1)"
|
|
|
|
export PASS_MPD="$(pass linux/mpd | head -n 1)"
|
2019-11-02 06:45:18 +00:00
|
|
|
export PASS_MPD_ADMIN="$(pass linux/mpd-admin | head -n 1)"
|
2019-10-26 17:05:31 +00:00
|
|
|
|
|
|
|
export ME_FULLNAME="$(pass me | head -n 1)"
|
|
|
|
export ME_ADDRESS="$(pass me | rg 'address' | cut -d' ' -f2-)"
|
|
|
|
export ME_PHONE="$(pass me | rg 'phone' | cut -d' ' -f2-)"
|