Last active
June 4, 2019 06:30
-
-
Save anshprat/516ba353c1933afaeef6874a7efef02e to your computer and use it in GitHub Desktop.
run_chromium_fullscreen.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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