diff --git a/desktop/cinnamon/cinnamon/files/Notify-0.8.patch b/desktop/cinnamon/cinnamon/files/Notify-0.8.patch
new file mode 100644
index 0000000000..09b1a07504
--- /dev/null
+++ b/desktop/cinnamon/cinnamon/files/Notify-0.8.patch
@@ -0,0 +1,15 @@
+diff -Nuar a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_notifications.py b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_notifications.py
+--- a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_notifications.py 2022-06-21 18:01:39.000000000 +0300
++++ b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_notifications.py 2022-07-17 17:59:13.743936377 +0300
+@@ -1,7 +1,10 @@
+ #!/usr/bin/python3
+
+ import gi
+-gi.require_version('Notify', '0.7')
++try:
++ gi.require_version("Notify", "0.7")
++except ValueError:
++ gi.require_version("Notify", "0.8")
+ from gi.repository import Notify
+
+ from SettingsWidgets import SidePage
diff --git a/desktop/cinnamon/cinnamon/pspec.xml b/desktop/cinnamon/cinnamon/pspec.xml
index 3ef15f25f6..02c67cfc14 100644
--- a/desktop/cinnamon/cinnamon/pspec.xml
+++ b/desktop/cinnamon/cinnamon/pspec.xml
@@ -78,6 +78,7 @@
default-theme.patch
set_wheel.patch
0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
+ Notify-0.8.patch