diff --git a/README.md b/README.md index 52f9b11..8b328f3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ A simple wrapper around JXA scripts to allow you to control your Mac using PHP. -**👋 This is a work in progress and is not ready for production use.** That being said, it's pretty fun to play with. So please do so. +**👋 This is a work in progress and is not ready for production use.** I'm still finalizing the API and adding features, things may change. + +That being said, it's pretty fun to play with. So please do so. ## Installation @@ -102,12 +104,15 @@ Automator::make() ->type('Warp Launch') ->pause(.5) ->enter() + ->pause(.5) ->type('blog-joe-codes') ->pause(.5) ->enter() ->run(); ``` +![Code Snippet Demo](images/raycast-demo.gif) + ### Demo a Code Snippet ```php @@ -126,6 +131,8 @@ Automator::make() ->run(); ``` +![Code Snippet Demo](images/vscode-demo.gif) + ## Roadmap Right now you can basically automate anything you can do with your keyboard. I would like to add: diff --git a/images/raycast-demo.gif b/images/raycast-demo.gif new file mode 100644 index 0000000..d450d26 Binary files /dev/null and b/images/raycast-demo.gif differ diff --git a/images/vscode-demo.gif b/images/vscode-demo.gif new file mode 100644 index 0000000..b1241ac Binary files /dev/null and b/images/vscode-demo.gif differ