diff options
-rw-r--r-- | downloaders.js | 2 | ||||
-rw-r--r-- | ui.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/downloaders.js b/downloaders.js index 55bdbcb..1e2a9e9 100644 --- a/downloaders.js +++ b/downloaders.js @@ -84,7 +84,7 @@ const downloaders = { extension: 'mp3', // Generally target file extension, used by youtube-dl // TODO: Cross-platform stuff - rootCacheDir: process.env.HOME + '/.http-music/downloads', + rootCacheDir: process.env.HOME + '/.mtui/downloads', http: cachify('http', arg => { const out = ( diff --git a/ui.js b/ui.js index f91dd62..b550070 100644 --- a/ui.js +++ b/ui.js @@ -26,7 +26,7 @@ class AppElement extends FocusElement { this.recordStore = new RecordStore() this.queueGrouplike = {isTheQueue: true, items: []} - this.rootDirectory = process.env.HOME + '/.http-music' + this.rootDirectory = process.env.HOME + '/.mtui' this.form = new Form() this.addChild(this.form) |