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
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: cyan; icon-glyph: bus; | |
| let [argsStop, topColorStr, bottomColorStr, textColorStr] = cleanParameters( | |
| args?.widgetParameter | |
| ); | |
| let topColor = new Color(topColorStr); | |
| let bottomColor = new Color(bottomColorStr); |
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 | |
| # | |
| # Chrome Profile Lister | |
| # Lists all Google Chrome profiles with email addresses only | |
| # Format designed for easy selection and extraction in Keyboard Maestro | |
| # | |
| # Process command-line options | |
| SHOW_HEADER=true | |
| FORMAT="default" |
OlderNewer