diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-01-02 09:30:56 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-01-02 09:33:54 +0300 |
| commit | 44b5612697d39143d9b43eaa75c41eb73a508e74 (patch) | |
| tree | 07a2f7dd73907c6c912d117acaefcc4df1c8f45e /src/niri.rs | |
| parent | 0113292cf6a77aea55739c7e779a891786aa35bd (diff) | |
| download | niri-44b5612697d39143d9b43eaa75c41eb73a508e74.tar.gz niri-44b5612697d39143d9b43eaa75c41eb73a508e74.tar.bz2 niri-44b5612697d39143d9b43eaa75c41eb73a508e74.zip | |
Remove notify-rust dependency
It uses outdated zbus.
Diffstat (limited to 'src/niri.rs')
| -rw-r--r-- | src/niri.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/niri.rs b/src/niri.rs index a0819732..2c5cbe48 100644 --- a/src/niri.rs +++ b/src/niri.rs @@ -4545,7 +4545,9 @@ impl Niri { } #[cfg(feature = "dbus")] - crate::utils::show_screenshot_notification(image_path); + if let Err(err) = crate::utils::show_screenshot_notification(image_path) { + warn!("error showing screenshot notification: {err:?}"); + } #[cfg(not(feature = "dbus"))] drop(image_path); }); |
