/usr/bin/chinese-calendar-autostart is in chinese-calendar 1.0.3-0ubuntu1.
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 | #! /bin/bash
startFilePath="$HOME/.local/share/chinese-calendar/chinese-calendar.desktop"
if [ ! -f "$startFilePath" ]; then
echo "yes"
/usr/bin/chinese-calendar &
else
echo "no"
fi
|