From 33c551608d2869e5d4f067ee45a1796f21dc2199 Mon Sep 17 00:00:00 2001 From: Mason Hock Date: Fri, 6 Dec 2019 13:12:21 -0800 Subject: [PATCH] add DATA/indiciator-datetime --- .../launch-time-admin-in-mate.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 helpers/DATA/indicator-datetime/launch-time-admin-in-mate.patch diff --git a/helpers/DATA/indicator-datetime/launch-time-admin-in-mate.patch b/helpers/DATA/indicator-datetime/launch-time-admin-in-mate.patch new file mode 100644 index 0000000..fef2702 --- /dev/null +++ b/helpers/DATA/indicator-datetime/launch-time-admin-in-mate.patch @@ -0,0 +1,22 @@ +--- src/actions-live.cpp 2017-08-29 08:36:12.000000000 -0700 ++++ src/actions-live.cpp 2019-09-10 13:06:26.971791147 -0700 +@@ -82,6 +82,9 @@ + if (!g_strcmp0 (desktop_names[i], "Unity")) { + result = LiveActions::UNITY7; + break; ++ } else if (!g_strcmp0 (desktop_names[i], "MATE")) { ++ result = LiveActions::MATE; ++ break; + } + } + g_strfreev (desktop_names); +@@ -144,6 +147,9 @@ + case LiveActions::UNITY7: + execute_command("unity-control-center datetime"); + break; ++ case LiveActions::MATE: ++ execute_command("time-admin"); ++ break; + default: + execute_command("gnome-control-center datetime"); + }