From 84b4371ab5b0385c9c21a4fd534db4e08f09478a Mon Sep 17 00:00:00 2001 From: mixmastamyk Date: Wed, 1 Apr 2026 14:21:29 -0700 Subject: [PATCH] Update cs_general.py Lower minimum allowable memory limit. Does not change default. --- .../usr/share/cinnamon/cinnamon-settings/modules/cs_general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_general.py b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_general.py index aeae69c476..1973e1243d 100755 --- a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_general.py +++ b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_general.py @@ -44,7 +44,7 @@ def on_module_selected(self): switch = GSettingsSwitch(_("Restart Cinnamon when it uses too much memory"), "org.cinnamon.launcher", "memory-limit-enabled") settings.add_row(switch) - spin = GSettingsSpinButton(_("Memory limit"), "org.cinnamon.launcher", "memory-limit", _("MB"), 1024, 36000, 1, 100) + spin = GSettingsSpinButton(_("Memory limit"), "org.cinnamon.launcher", "memory-limit", _("MB"), 256, 36000, 1, 100) settings.add_reveal_row(spin, "org.cinnamon.launcher", "memory-limit-enabled") spin = GSettingsSpinButton(_("Check frequency"), "org.cinnamon.launcher", "check-frequency", _("seconds"), 1, 86400, 1, 60)