/usr/share/upstart/sessions/unity-settings-daemon.conf is in unity-settings-daemon 15.04.1+18.04.20180413-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | description "The Unity Settings Daemon"
author "Dimitri John Ledkov <xnox@ubuntu.com>"
start on started dbus and starting gnome-session
stop on stopping gnome-session
pre-start script
for DESKTOP in $(echo "$XDG_CURRENT_DESKTOP" | sed 's/:/ /g')
do
if [ "x$DESKTOP" = "xUnity" ]; then
exit 0
fi
done
stop
end script
respawn
exec /usr/lib/unity-settings-daemon/unity-settings-daemon
|