void-packages/srcpkgs/wired-notify/patches/32bit.patch
Francesco Carmelo Capria 4bd901c17d New package: wired-notify-0.10.2
Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
2022-10-08 16:31:44 -04:00

11 lines
515 B
Diff

--- a/src/manager.rs
+++ b/src/manager.rs
@@ -143,6 +143,6 @@
if let Some(threshold) = Config::get().idle_threshold {
match maths_utility::query_screensaver_info(&self.base_window) {
Ok(info) => {
- if info.idle / 1000 >= threshold {
+ if info.idle as u64 / 1000 >= threshold {
self.layout_windows
.values_mut()
.flatten()