diff options
| author | Christian Krinitsin <christian@krinitsin.xyz> | 2024-03-18 17:50:57 +0100 |
|---|---|---|
| committer | Christian Krinitsin <christian@krinitsin.xyz> | 2024-03-18 17:50:57 +0100 |
| commit | f4601e1dfc54cc2a2b25b42e185dd8ed9f13be19 (patch) | |
| tree | 496cb4d1266375396a34db1fb673562b838d919b /spotify-player | |
| parent | c6775b8032e2423f5e484505b277a7e0fdc9788a (diff) | |
| download | dotfiles-f4601e1dfc54cc2a2b25b42e185dd8ed9f13be19.tar.gz dotfiles-f4601e1dfc54cc2a2b25b42e185dd8ed9f13be19.zip | |
edited structure and added install script
Diffstat (limited to 'spotify-player')
| -rwxr-xr-x | spotify-player/.config/spotify-player/app.toml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/spotify-player/.config/spotify-player/app.toml b/spotify-player/.config/spotify-player/app.toml new file mode 100755 index 0000000..7b3228c --- /dev/null +++ b/spotify-player/.config/spotify-player/app.toml @@ -0,0 +1,39 @@ +theme = "dracula" +client_id = "8b99ea3c69664d0b952d35575d543f4c" +client_port = 8080 +playback_format = """ +{track} +{artists} - {album} +{metadata}""" +notify_format = { summary = "{track}", body = "{artists} - {album}" } +tracks_playback_limit = 50 +app_refresh_duration_in_ms = 32 +playback_refresh_duration_in_ms = 0 +page_size_in_rows = 20 +play_icon = "▶" +pause_icon = "▌▌" +liked_icon = "♥" +border_type = "Plain" +progress_bar_type = "Rectangle" +playback_window_position = "Top" +playback_window_width = 6 +enable_media_control = true +enable_streaming = "DaemonOnly" +notify_streaming_only=true +enable_cover_image_cache = true +default_device = "spotify-daemon" + +[copy_command] +command = "xclip" +args = [ + "-sel", + "c", +] + +[device] +name = "spotify-daemon" +device_type = "speaker" +volume = 70 +bitrate = 320 +audio_cache = false +normalization = false |
