midday-commander
Loading...
Searching...
No Matches
Config.h
Go to the documentation of this file.
1//
2// Created by Vojtěch Pašek on 24.05.2023.
3//
4
5#ifndef MIDDAY_COMMANDER_CONFIG_H
6#define MIDDAY_COMMANDER_CONFIG_H
7
8#include <filesystem>
9
10#include "interface/Theme.h"
11
15class Config {
16public:
17 explicit Config(const std::filesystem::path& path = std::string{getenv("HOME")} + "/.midday.json");
18
20};
21
22
23#endif //MIDDAY_COMMANDER_CONFIG_H
Provides external configuration to the Application.
Definition: Config.h:15
Theme theme
Definition: Config.h:19
Represents a set of colors used by Interface.
Definition: Theme.h:15
static Theme defaultTheme
Definition: Theme.h:71