mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-01-13 01:33:45 +01:00
26 lines
685 B
Diff
26 lines
685 B
Diff
From d15a08eb96b8776af1f18bc637f8509cb2529f11 Mon Sep 17 00:00:00 2001
|
|
From: j1nx <p.steenbergen@j1nx.nl>
|
|
Date: Wed, 4 Jan 2023 14:57:59 +0100
|
|
Subject: [PATCH 1/1] Make /home/mycroft/Music the default folder
|
|
|
|
---
|
|
__init__.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/__init__.py b/__init__.py
|
|
index 2bbafdb..16fbbd5 100644
|
|
--- a/__init__.py
|
|
+++ b/__init__.py
|
|
@@ -49,7 +49,7 @@ class LocalMusicSkill(OVOSCommonPlaybackSkill):
|
|
|
|
@property
|
|
def music_dir(self):
|
|
- return self.settings.get('music_dir') or '/media'
|
|
+ return self.settings.get('music_dir') or '/home/mycroft/Music'
|
|
|
|
@property
|
|
def music_library(self):
|
|
--
|
|
2.34.1
|
|
|