diff options
author | Florrie <towerofnix@gmail.com> | 2018-06-06 09:12:08 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-06-06 09:12:10 -0300 |
commit | 3616a42cfb863cbf3a0845af3af3ac70430119d3 (patch) | |
tree | 881b399fa40a4df39de08fc7a77bf20d16f81fb4 | |
parent | 3c65d4ca6246c5723d9fc6a73371150d06c0b6c2 (diff) |
Change http-music paths to mtui
I.e. cache is now in ~/.mtui instead of ~/.http-music.
-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) |