feat: refactor architecture #4

Merged
Stevan merged 10 commits from stevanfreeborn/feat/refactor-architecture into main 2026-07-28 15:22:14 +00:00
Showing only changes of commit dc1b08095c - Show all commits
+14
View File
@@ -0,0 +1,14 @@
use notify_rust::Notification;
pub fn send_desktop_notification(title: &str, body: &str) {
let title = title.to_string();
let body = body.to_string();
std::thread::spawn(move || {
let _ = Notification::new()
.summary(&title)
.body(&body)
.appname("termato")
.show();
});
}