/usr/lib/systemd/user/appmenu-gtk-module.service is in appmenu-gtk-module-common 0.6.94-1.
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 | [Unit]
Description=Appmenu GTK Module Environment variables
After=dbus.service
Before=gnome-session.service
PartOf=graphical-session.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/sh -ec '\
GTK_MODULES="{GTK_MODULES:+GTK_MODULES:}appmenu-gtk-module";\
/usr/bin/dbus-update-activation-environment --verbose --systemd GTK_MODULES'
ExecStopPost=/bin/sh -ec '\
GTK_MODULES=(echo -n {GTK_MODULES} | /usr/bin/awk -v RS=: -v ORS=: "/^appmenu-gtk-module/ {next} {print}" | /usr/bin/sed -e "s/:*$//");\
/usr/bin/dbus-update-activation-environment --verbose --systemd GTK_MODULES'
[Install]
WantedBy=gnome-session.target mate-session.target
|