User:Yoana Buzova/ prototyping

From XPUB & Lens-Based wiki
< User:Yoana Buzova
Revision as of 02:37, 22 May 2013 by Yoana Buzova (talk | contribs) (Created page with "'''MY browser''' / mmths + yoana {{vimeo.com|66693129}} <source lang=bash> #!/bin/bash while true; do if pgrep Safari || pgrep firefox || pgrep Chrome &>/dev/null;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

MY browser / mmths + yoana


Template:Vimeo.com


#!/bin/bash


while true; do

	if pgrep Safari || pgrep firefox || pgrep Chrome  &>/dev/null; then
		echo alive
		sleep 4
		pkill Safari 
		pkill firefox
		pkill Chrome
		/usr/bin/osascript <<-EOF

    tell application "System Events"
        activate
        display dialog "We are closed!"buttons{"Sorry"}
    end tell

EOF
	else 
		echo DEAD!!!
	fi
done