update-notifier: removed unnecessary sleep in update-manager call

This commit is contained in:
Ruben Rodriguez 2023-05-02 00:12:18 -04:00
parent 82a87be243
commit f83900433f
2 changed files with 1 additions and 10 deletions

View file

@ -34,15 +34,6 @@ diff -ru source.orig/src/update-notifier.c source/src/update-notifier.c
diff -ru source.orig/src/update.c source/src/update.c diff -ru source.orig/src/update.c source/src/update.c
--- source.orig/src/update.c 2023-05-01 14:30:39.889778059 -0400 --- source.orig/src/update.c 2023-05-01 14:30:39.889778059 -0400
+++ source/src/update.c 2023-05-01 18:05:21.754318730 -0400 +++ source/src/update.c 2023-05-01 18:05:21.754318730 -0400
@@ -547,7 +547,7 @@
return;
}
- g_spawn_command_line_async("nice ionice -c3 update-manager "
+ g_spawn_command_line_async("sleep 5; nice ionice -c3 update-manager "
"--no-update --no-focus-on-map", NULL);
}
@@ -702,7 +702,8 @@ @@ -702,7 +702,8 @@
// show the notification with some delay. otherwise on a login // show the notification with some delay. otherwise on a login

View file

@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=10 VERSION=11
COMPONENT=main COMPONENT=main
. ./config . ./config