summaryrefslogtreecommitdiff
path: root/dotfiles/system/.config/mopidy/mopidy.conf
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-26 17:36:38 -0600
committerCraig Jennings <c@cjennings.net>2026-01-26 17:36:38 -0600
commitdada2f255daaa2fb493ec8c7d47e2a8123aea494 (patch)
tree0c0eeb84bb7b6e66a2d7f41cdfd061b25f80cc14 /dotfiles/system/.config/mopidy/mopidy.conf
parentd50e5955837788fc69b4d5bc74cb574b859ed31a (diff)
refactor(dotfiles): rename system/ to common/ and remove unused configs
Rename dotfiles/system to dotfiles/common for clarity - indicates shared dotfiles used across all desktop environments (DWM, Hyprland). Removed config directories for uninstalled applications: - ghostty (using different terminal) - lf (using ranger instead) - mopidy (using mpd instead) - nitrogen (X11-only, obsolete for Wayland) - pychess (not installed) - JetBrains (not installed via archsetup) - youtube-dl (using yt-dlp with different config location) Kept audacious config for potential future use. Updated all references in archsetup, CLAUDE.md, todo.org, and validation.sh. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/system/.config/mopidy/mopidy.conf')
-rw-r--r--dotfiles/system/.config/mopidy/mopidy.conf91
1 files changed, 0 insertions, 91 deletions
diff --git a/dotfiles/system/.config/mopidy/mopidy.conf b/dotfiles/system/.config/mopidy/mopidy.conf
deleted file mode 100644
index a386dbd..0000000
--- a/dotfiles/system/.config/mopidy/mopidy.conf
+++ /dev/null
@@ -1,91 +0,0 @@
-# Mopidy configuration for cjennings
-# See https://docs.mopidy.com/en/latest/config/ for documentation
-
-[core]
-cache_dir = $XDG_CACHE_DIR/mopidy
-config_dir = $XDG_CONFIG_DIR/mopidy
-data_dir = $XDG_DATA_DIR/mopidy
-max_tracklist_length = 10000
-restore_state = false
-
-[logging]
-verbosity = 0
-format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
-color = true
-
-[audio]
-mixer = software
-mixer_volume =
-output = pulsesink device=alsa_output.pci-0000_00_1f.3.analog-stereo
-# Buffer time in milliseconds - 1000ms works well for local files
-# Explicitly using analog output to avoid Bluetooth latency/jumpiness issues
-buffer_time = 1000
-
-[proxy]
-scheme =
-hostname =
-port =
-username =
-password =
-
-[file]
-enabled = true
-# Point to Craig's music directory
-media_dirs =
- /home/cjennings/music|Music
-excluded_file_extensions =
- .directory
- .html
- .jpeg
- .jpg
- .log
- .nfo
- .pdf
- .png
- .txt
- .zip
-show_dotfiles = false
-follow_symlinks = false
-metadata_timeout = 1000
-
-[http]
-enabled = true
-hostname = 127.0.0.1
-port = 6680
-zeroconf = Mopidy HTTP server on $hostname
-allowed_origins =
-csrf_protection = true
-default_app = mopidy
-
-[m3u]
-enabled = true
-base_dir = /home/cjennings/music
-default_encoding = latin-1
-default_extension = .m3u
-playlists_dir = /home/cjennings/music
-
-[softwaremixer]
-enabled = true
-
-[stream]
-enabled = true
-protocols =
- http
- https
- mms
- rtmp
- rtmps
- rtsp
-metadata_blacklist =
-# Increase timeout for slow/distant streams (30 seconds)
-timeout = 30000
-
-# MPD frontend - enables MPD protocol compatibility (port 6600)
-# This allows MPD clients like mpc, ncmpcpp to work with Mopidy
-[mpd]
-enabled = true
-hostname = 127.0.0.1
-port = 6600
-password =
-max_connections = 20
-connection_timeout = 60 \ No newline at end of file