Files
PowerToys/src/runner/general_settings.h
Andrey Nekrasov cdd06d7e98 Dev/yuyoyuppe/autoupdate polishing (#11693)
* [Updating] Create a dedicated executable project for updating procedures

* [Updating] Use PowerToys.Update for update procedures (#11495)

* [Updating] Use PowerToys.Update for update procedures

* [Setup] Remove toast notifications and other dependencies from bootstrapper

* [Installer] Remove Winstore, redundant strings

* [Settings] Remove deprecated 'packaged' setting
2021-06-14 12:55:59 +03:00

24 lines
621 B
C++

#pragma once
#include <common/utils/json.h>
struct GeneralSettings
{
bool isStartupEnabled;
std::wstring startupDisabledReason;
std::map<std::wstring, bool> isModulesEnabledMap;
bool isElevated;
bool isRunElevated;
bool isAdmin;
bool downloadUpdatesAutomatically;
std::wstring theme;
std::wstring systemTheme;
std::wstring powerToysVersion;
json::JsonObject to_json();
};
json::JsonObject load_general_settings();
GeneralSettings get_general_settings();
void apply_general_settings(const json::JsonObject& general_configs, bool save = true);
void start_initial_powertoys();