/etc/X11/Xsession.d/90unclutter is in unclutter 8-21.
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 | # /etc/X11/Xsession.d/90unclutter
# This file is sourced by Xsession(5), not executed.
if [ -e /etc/default/unclutter ]
then
. /etc/default/unclutter
fi
if [ -x /usr/bin/unclutter ] && [ "${START_UNCLUTTER}" = "true" ]
then
/usr/bin/unclutter ${EXTRA_OPTS} &
fi
|