summaryrefslogtreecommitdiff
path: root/src/settings.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2023-04-13 16:29:56 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2023-04-13 16:29:56 -0400
commitc084230767053e942b29941a8728f421e256cf1d (patch)
treeae58dc5d3978930ec5ed1fb0e65d108b56369d42 /src/settings.hpp
parent7b5dc8a86532cf00ab49a1922dbd4ce21cdaf01f (diff)
parent44ab35dfd591c4c357673cc2ce3cb3a6964a1fff (diff)
downloadabaddon-portaudio-c084230767053e942b29941a8728f421e256cf1d.tar.gz
abaddon-portaudio-c084230767053e942b29941a8728f421e256cf1d.zip
Merge branch 'master' of https://github.com/uowuo/abaddon into voice
Diffstat (limited to 'src/settings.hpp')
-rw-r--r--src/settings.hpp8
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);