diff options
Diffstat (limited to 'src/settings.hpp')
-rw-r--r-- | src/settings.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/settings.hpp b/src/settings.hpp index 9d32d2e..53f3423 100644 --- a/src/settings.hpp +++ b/src/settings.hpp @@ -44,6 +44,14 @@ public: std::string MentionBadgeColor { "#b82525" }; std::string MentionBadgeTextColor { "#fbfbfb" }; std::string UnreadIndicatorColor { "#ffffff" }; + + // [notifications] +#ifdef _WIN32 + bool NotificationsEnabled { false }; +#else + bool NotificationsEnabled { true }; +#endif + bool NotificationsPlaySound { true }; }; SettingsManager(const std::string &filename); |