Removed commit history

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2019-10-26 20:05:31 +03:00
commit b1335a3628
199 changed files with 36930 additions and 0 deletions

1
secrets/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
secrets

11
secrets/env Executable file
View file

@ -0,0 +1,11 @@
#!/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)"
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-)"

16
secrets/secrets.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
source $DOTREPO/secrets/env
cat <<SECRET > $DOTREPO/secrets/secrets
export PASS_LIBREFM="$PASS_LIBREFM"
export PASS_MUSICBRAINZ="$PASS_MUSICBRAINZ"
export PASS_LISTENBRAINZ="$PASS_LISTENBRAINZ"
export PASS_MUSPY="$PASS_MUSPY"
export PASS_ARIA2="$PASS_ARIA2"
export PASS_MPD="$PASS_MPD"
export ME_FULLNAME="$ME_FULLNAME"
export ME_ADDRESS="$ME_ADDRESS"
export ME_PHONE="$ME_PHONE"
SECRET