1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Maximiliano Curia <maxy@gnuservers.com.ar>
Date: Sun, 13 Mar 2016 19:10:11 +0100
Subject: Drop nm-applet from the session files.
nm-applet is started by the autostart script anyway, and if it's in the
session file and network-manager-gnome is not installed then the session
fails to start.
Adjusted to meson build system 2020-11-27 NP
Debian-Bug: https://bugs.debian.org/818084
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index 13a124e..4e2732b 100644
--- a/meson.build
+++ b/meson.build
@@ -166,7 +166,7 @@ session_conf = configuration_data()
if have_networkmanager
session_conf.set('REQUIRED', '')
else
- session_conf.set('REQUIRED', 'nm-applet;')
+ session_conf.set('REQUIRED', '')
endif
session_files = ['cinnamon.session', 'cinnamon2d.session']
|