spotifyd.md (511B)
1 # spotifyd 2 3 ``` 4 pacman -S spotifyd 5 mkdir ~/.config/spotifyd 6 vim ~/.config/spotifyd/spotifyd.conf 7 [global] 8 username = "" 9 password = "" 10 backend = "alsa" 11 device = "default" # Given by `aplay -L` - default is pulse 12 mixer = "PCM" 13 volume-controller = "alsa" # or alsa_linear, or softvol 14 #onevent = command_run_on_playback_event 15 device_name = "spotifydkk" # no spaces 16 bitrate = 320 17 cache_path = "cache_directory" 18 volume-normalisation = true 19 normalisation-pregain = -10 20 systemctl --user start spotifyd 21 ```