-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spotify: small improvements, do not setup spotifyd by default
- Loading branch information
Showing
2 changed files
with
28 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
--- | ||
spotify_email: "{{ user_email }}" | ||
spotify_spotifyd_password_cmd: "rbw get -f password Spotify" | ||
spotify_spotifyd_enable: false | ||
spotify_spotifyd_password_cmd: "rbw get Spotify" | ||
spotify_spotifyd_device_name: "spotifyd@{{ ansible_hostname }}" | ||
spotify_spotifyd_bitrate: "160" | ||
# TODO: better way for obtaining the home directory | ||
# it must be an absolute path (readlink it?) | ||
# as spotifyd does not support the placeholders like ~ or $HOME | ||
spotify_spotifyd_cache_path: "{{ ansible_env.HOME }}/.cache/spotifyd" | ||
# spotifyd doesn't not expand this variable, thus we need to do it here | ||
spotify_spotifyd_cache_path: "{{ lookup('env', 'HOME') }}/.cache/spotifyd" | ||
spotify_spotifyd_cache_size: "10000000000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters