I have a .desktop
file on my desktop that launches a html page. I need the .desktop
file to run from startup, what would be the best way to do this?
I have tried crontab
and also the startup application but have been unsuccessful so far.
[Desktop Entry] Version=1.0
Name=Chromium Web Browser
GenericName=Web Browser
GenericName[en_GB]=Web Browser
Comment=Access the Internet
Comment[en_GB]=Access the Internet
Exec=chromium-browser --kiosk file:///home/user1/Desktop/mltest/vms.html
Terminal=false X-MultipleArgs=false
Type=Application
Icon=chromium-browser
Categories=Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml_xml;x-scheme-handler/http;x-scheme-handler/https;
StartupWMClass=Chromium-browser
StartupNotify=true
Actions=NewWindow;Incognito;TempProfile;
X-AppInstall-Package=chromium-browser
[Desktop Action NewWindow] Name=Open a New Window Exec=chromium-browser
[Desktop Action Incognito] Name=Open a New Window in incognito mode Exec=chromium-browser --incognito [Desktop Action TempProfile] Name=Open a New Window with a temporary profile Exec=chromium-browser --temp-profile
– oliverbpt Oct 25 '14 at 14:37