From e672dbac4117ad9091e78034adcaa1bf630868a8 Mon Sep 17 00:00:00 2001 From: Arqam Qazi <128565091+ArqamQazi@users.noreply.github.com> Date: Wed, 6 May 2026 22:07:57 +0530 Subject: [PATCH] backgrounds: Add 'wallpaper' to keywords Updates the backgrounds .desktop file to include 'wallpaper' in its keywords. This improves searchability in the menu, as users often use this term interchangeably with 'background'. --- .../share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py index 8d071bbe8a..a2d80644cf 100755 --- a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py +++ b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py @@ -166,7 +166,7 @@ class Module: comment = _("Change your desktop's background") def __init__(self, content_box): - keywords = _("background, picture, slideshow") + keywords = _("background, picture, slideshow, wallpaper") self.sidePage = SidePage(_("Backgrounds"), "cs-backgrounds", keywords, content_box, module=self) def on_module_selected(self):