aboutsummaryrefslogtreecommitdiff
path: root/include/Config.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-10-31 22:54:59 +0100
committerdec05eba <dec05eba@protonmail.com>2022-10-31 22:54:59 +0100
commit53316e4bada29f1392df2528d8616afde17f570b (patch)
tree4b687dc2bd2b46da1b2d31648bc40ceb6179972f /include/Config.hpp
parent9540ab168be53f3ec2aec513d855df0194d9cb8a (diff)
Add ctrl+shift+s to download files without a dialog
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;