aboutsummaryrefslogtreecommitdiff
path: root/include/Config.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Config.hpp')
-rw-r--r--include/Config.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
index 4d9fd91..d7bfddf 100644
--- a/include/Config.hpp
+++ b/include/Config.hpp
@@ -55,6 +55,13 @@ namespace QuickMedia {
std::vector<std::string> known_instances;
};
+ struct Download {
+ std::string video_directory;
+ std::string image_directory;
+ std::string music_directory;
+ std::string file_directory;
+ };
+
struct Config {
Config() = default;
Config(const Config&) = delete;
@@ -70,6 +77,7 @@ namespace QuickMedia {
YoutubeConfig youtube;
MatrixConfig matrix;
Peertube peertube;
+ Download download;
bool use_system_fonts = false;
bool use_system_mpv_config = false;
bool enable_shaders = true;