├── .gitignore ├── README.md ├── scripts ├── .DS_Store ├── devtools │ ├── Imageset.scpt │ ├── apache-control.scpt │ ├── app-icon.scpt │ ├── brew-launch-manager.scpt │ ├── change-resolution.scpt │ ├── open-terminal.scpt │ ├── patch-maker.scpt │ ├── project-creator.scpt │ ├── quoting-creator.scpt │ └── web-server-detection.scpt └── general │ ├── Gerador de Exerícios de Matemática.scpt │ ├── Hiperload.scpt │ ├── bb-csv-adjust.scpt │ ├── contacts-to-csv.scpt │ ├── create-date-based-directories.scpt │ ├── dashboard-control.scpt │ ├── debits-reminder.scpt │ ├── fix-ofx-dates.scpt │ ├── medicine-time.scpt │ └── process-boost.scpt └── workflows ├── services ├── Abrir no Emacs.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Arquivar Item.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Compartilhar no Hiperload.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Converter Tabbar Icons @3x.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Converter para JPEG.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Converter para PNG.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Converter para PSD.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── Criar Lembrete.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Exportar Pages para PDF.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Image Set para iOS.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Pages para PDF.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Reduzir 50% de Resolução.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── Renomear em sequência.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow └── Ícones para Apps.workflow │ └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Preview.png │ └── document.wflow └── start-screen-saver.workflow └── Contents ├── Info.plist ├── QuickLook └── Thumbnail.png └── document.wflow /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/README.md -------------------------------------------------------------------------------- /scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/.DS_Store -------------------------------------------------------------------------------- /scripts/devtools/Imageset.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/Imageset.scpt -------------------------------------------------------------------------------- /scripts/devtools/apache-control.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/apache-control.scpt -------------------------------------------------------------------------------- /scripts/devtools/app-icon.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/app-icon.scpt -------------------------------------------------------------------------------- /scripts/devtools/brew-launch-manager.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/brew-launch-manager.scpt -------------------------------------------------------------------------------- /scripts/devtools/change-resolution.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/change-resolution.scpt -------------------------------------------------------------------------------- /scripts/devtools/open-terminal.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/open-terminal.scpt -------------------------------------------------------------------------------- /scripts/devtools/patch-maker.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/patch-maker.scpt -------------------------------------------------------------------------------- /scripts/devtools/project-creator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/project-creator.scpt -------------------------------------------------------------------------------- /scripts/devtools/quoting-creator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/quoting-creator.scpt -------------------------------------------------------------------------------- /scripts/devtools/web-server-detection.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/devtools/web-server-detection.scpt -------------------------------------------------------------------------------- /scripts/general/Gerador de Exerícios de Matemática.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/Gerador de Exerícios de Matemática.scpt -------------------------------------------------------------------------------- /scripts/general/Hiperload.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/Hiperload.scpt -------------------------------------------------------------------------------- /scripts/general/bb-csv-adjust.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/bb-csv-adjust.scpt -------------------------------------------------------------------------------- /scripts/general/contacts-to-csv.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/contacts-to-csv.scpt -------------------------------------------------------------------------------- /scripts/general/create-date-based-directories.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/create-date-based-directories.scpt -------------------------------------------------------------------------------- /scripts/general/dashboard-control.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/dashboard-control.scpt -------------------------------------------------------------------------------- /scripts/general/debits-reminder.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/debits-reminder.scpt -------------------------------------------------------------------------------- /scripts/general/fix-ofx-dates.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/fix-ofx-dates.scpt -------------------------------------------------------------------------------- /scripts/general/medicine-time.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/medicine-time.scpt -------------------------------------------------------------------------------- /scripts/general/process-boost.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/scripts/general/process-boost.scpt -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Abrir no Emacs.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Abrir no Emacs.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Abrir no Emacs.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Arquivar Item.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Arquivar Item.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Arquivar Item.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Compartilhar no Hiperload.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Compartilhar no Hiperload.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Compartilhar no Hiperload.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Converter Tabbar Icons @3x.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter Tabbar Icons @3x.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Converter Tabbar Icons @3x.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter Tabbar Icons @3x.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter Tabbar Icons @3x.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter Tabbar Icons @3x.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para JPEG.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para JPEG.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para JPEG.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PNG.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PNG.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PNG.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PSD.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PSD.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Converter para PSD.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Criar Lembrete.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Criar Lembrete.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Criar Lembrete.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Exportar Pages para PDF.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Exportar Pages para PDF.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Exportar Pages para PDF.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Image Set para iOS.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Image Set para iOS.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Image Set para iOS.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Image Set para iOS.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Image Set para iOS.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Image Set para iOS.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Pages para PDF.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Pages para PDF.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Pages para PDF.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Reduzir 50% de Resolução.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Reduzir 50% de Resolução.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Reduzir 50% de Resolução.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Renomear em sequência.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Renomear em sequência.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Renomear em sequência.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/services/Ícones para Apps.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Ícones para Apps.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/services/Ícones para Apps.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Ícones para Apps.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Ícones para Apps.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/services/Ícones para Apps.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/start-screen-saver.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/start-screen-saver.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/HEAD/workflows/start-screen-saver.workflow/Contents/document.wflow --------------------------------------------------------------------------------