From 8bcd0fbd17389ff9120f89e9380b394842540423 Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Mon, 20 Jan 2025 00:41:13 +0100 Subject: [PATCH] nightlight: Add schedule mode option 'always' This is more user-friendly than having to tweak the start and stop times. --- .../share/cinnamon/cinnamon-settings/modules/cs_nightlight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_nightlight.py b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_nightlight.py index 35cd94e784..a9dcdf86b1 100644 --- a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_nightlight.py +++ b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_nightlight.py @@ -58,7 +58,7 @@ def on_module_selected(self): size_group = Gtk.SizeGroup.new(Gtk.SizeGroupMode.HORIZONTAL) - options = ["auto", _("Automatic")], ["manual", _("Specify start and end times")] + options = ["auto", _("Automatic")], ["manual", _("Specify start and end times")], ["always", _("Keep always on")] widget = GSettingsComboBox(_("Schedule"), COLOR_SCHEMA, "night-light-schedule-mode", options, size_group=size_group) section.add_row(widget) section.need_separator = False