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 | |
| # Install dependencies on macos | |
| # brew install imagemagick | |
| # brew install exiftool | |
| # Ensure ImageMagick is installed | |
| if ! command -v magick &> /dev/null; then | |
| echo "ImageMagick is not installed. Please install it to use this script." | |
| exit 1 |
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
| cd /Applications && curl http://www.ninjamonkeysoftware.com/slate/versions/slate-latest.tar.gz | tar -xz | |
| cd ~ | |
| cat > .slate.js << EOF | |
| var pushRight = slate.operation("push", { | |
| "direction" : "right", | |
| "style" : "bar-resize:screenSizeX/3" | |
| }); | |
| var pushRightTab = slate.operation("push", { |
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
| # You will need to have appium server installed and running, and the appium ruby gem installed | |
| # appium 1.6.5 | |
| # appium_lib (9.4.3) | |
| # Tested on Android 7.0, Google Play Store 7.9.80... | |
| # To run the script connect a device with usb debugging enabled, then run at terminal: | |
| # ruby appium_clear_play_store_history.rb | |
| require 'appium_lib' |