mscripts/thingspy/things
Maciej Krok f58b3b37b2 start
2016-09-19 16:46:27 +02:00

19 lines
275 B
Bash
Executable File

#!/bin/bash
echo test
osascript <<EOD
tell application "Google Chrome"
activate
end tell
tell application "System Events"
key down {command}
key down {shift}
keystroke "f"
key up {shift}
key up {command}
end tell
EOD
echo test2