blob: 74ef5eb3a3f46a64a0ba0d90f6764ce6f8d4de6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
description "Indicator Application Service"
start on indicator-services-start
stop on desktop-end or indicator-services-end
emits appindicators-start appindicators-end
respawn
respawn limit 2 10
pre-start script
# NOTE: Limiting only to Unity 7 right now as it's still using
# dbusmenu. That can be lifted after it is ported to GMenu
if [ "x$DESKTOP_SESSION" == "xubuntu-touch" ] ; then
stop; exit 0
fi
end script
exec @pkglibexecdir@/indicator-application-service
pre-stop exec initctl emit appindicators-end
|