aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/src/notifications.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mumd/src/notifications.rs')
-rw-r--r--mumd/src/notifications.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mumd/src/notifications.rs b/mumd/src/notifications.rs
new file mode 100644
index 0000000..e52b909
--- /dev/null
+++ b/mumd/src/notifications.rs
@@ -0,0 +1,24 @@
+use log::*;
+
+pub fn init() {
+ #[cfg(feature = "notifications")]
+ if libnotify::init("mumd").is_err() {
+ warn!("Unable to initialize notifications");
+ }
+}
+
+#[cfg(feature = "notifications")]
+pub fn send(msg: String) -> Option<bool> {
+ match libnotify::Notification::new("mumd", Some(msg.as_str()), None).show() {
+ Ok(_) => Some(true),
+ Err(_) => {
+ warn!("Unable to send notification");
+ Some(false)
+ }
+ }
+}
+
+#[cfg(not(feature = "notifications"))]
+pub fn send(_: String) -> Option<bool> {
+ None
+}