Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@anshprat
Last active June 4, 2019 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anshprat/516ba353c1933afaeef6874a7efef02e to your computer and use it in GitHub Desktop.
Save anshprat/516ba353c1933afaeef6874a7efef02e to your computer and use it in GitHub Desktop.
run_chromium_fullscreen.sh
#!/bin/bash
ps aux|grep chromium-browser|grep -v grep
is_chromium_not_running=$?
if [ ${is_chromium_not_running} -eq 1 ]
then
chromium-browser --start-fullscreen "https://grabpay.atlassian.net/plugins/servlet/Wallboard/?dashboardId=10113" &>/dev/null &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment