/usr/bin/caja-dropbox-autostart is in ubuntu-mate-default-settings 18.04.17.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env bash
# Wrapper to start caja-dropbox if it is installed.
if [ -f /usr/bin/caja-dropbox ]; then
if [ ! -f "${HOME}/.config/autostart/caja-dropbox.desktop" ]; then
/usr/bin/caja-dropbox autostart y
exec /usr/bin/caja-dropbox start -i &
else
echo "Found an existing autostart for caja-dropbox, doing nothing."
fi
else
echo "caja-dropbox is not installed, doing nothing."
fi
|