mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 15:51:51 -04:00
Supysonic is a Python implementation of the Subsonic server API. Current supported features are: * browsing (by folders or tags) * streaming of various audio files formats * transcoding * user or random playlists * cover art * starred tracks/albums and ratings * lastfm scrobbling * Jukebox mode WWW: https://supysonic.readthedocs.io/ PR: 270751
11 lines
406 B
Python
11 lines
406 B
Python
--- supysonic/config.py.orig 2023-04-08 00:33:44 UTC
|
|
+++ supysonic/config.py
|
|
@@ -61,7 +61,7 @@ class DefaultConfig:
|
|
|
|
class IniConfig(DefaultConfig):
|
|
common_paths = [
|
|
- "/etc/supysonic",
|
|
+ os.path.join(sys.prefix, "etc/supysonic/supysonic.conf"),
|
|
os.path.expanduser("~/.supysonic"),
|
|
os.path.expanduser("~/.config/supysonic/supysonic.conf"),
|
|
"supysonic.conf",
|