/ src / modules / ShortcutGuide / ShortcutGuide / ShortcutGuideSettings.h
ShortcutGuideSettings.h
 1  #pragma once
 2  #include <string>
 3  
 4  struct ShortcutGuideSettings
 5  {
 6      std::wstring hotkey = L"shift+win+/";
 7      int overlayOpacity = 90;
 8      std::wstring theme = L"system";
 9      std::wstring disabledApps = L"";
10      bool shouldReactToPressedWinKey = false;
11      int windowsKeyPressTimeForGlobalWindowsShortcuts = 900;
12      int windowsKeyPressTimeForTaskbarIconShortcuts = 900;
13  };