├── .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: -------------------------------------------------------------------------------- 1 | # About macOS Scripts Toolset 2 | 3 | This is not a project in fact. This is a set of scripts that I use for my own in 4 | order to automate my daily tasks. Some scripts are so specific and depend on a 5 | set of file templates that I use in my company. However, you can download and 6 | adapt them for your needs. 7 | 8 | # What is here? 9 | 10 | You will find a set of Automator and AppleScript scripts that I use to automate 11 | my daily tasks. There are some services and some standalone scripts that make my 12 | life really easy on macOS. 13 | 14 | # License 15 | 16 | There is no license. Get it, use it, and be happy. You acknowledge that you will 17 | be using my scripts at your own risk. I do not guarantee anything and it is your 18 | own choice. 19 | 20 | Enjoy! 21 | -------------------------------------------------------------------------------- /scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/.DS_Store -------------------------------------------------------------------------------- /scripts/devtools/Imageset.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/Imageset.scpt -------------------------------------------------------------------------------- /scripts/devtools/apache-control.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/apache-control.scpt -------------------------------------------------------------------------------- /scripts/devtools/app-icon.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/app-icon.scpt -------------------------------------------------------------------------------- /scripts/devtools/brew-launch-manager.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/brew-launch-manager.scpt -------------------------------------------------------------------------------- /scripts/devtools/change-resolution.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/change-resolution.scpt -------------------------------------------------------------------------------- /scripts/devtools/open-terminal.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/open-terminal.scpt -------------------------------------------------------------------------------- /scripts/devtools/patch-maker.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/patch-maker.scpt -------------------------------------------------------------------------------- /scripts/devtools/project-creator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/project-creator.scpt -------------------------------------------------------------------------------- /scripts/devtools/quoting-creator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/quoting-creator.scpt -------------------------------------------------------------------------------- /scripts/devtools/web-server-detection.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/devtools/web-server-detection.scpt -------------------------------------------------------------------------------- /scripts/general/Gerador de Exerícios de Matemática.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/Gerador de Exerícios de Matemática.scpt -------------------------------------------------------------------------------- /scripts/general/Hiperload.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/Hiperload.scpt -------------------------------------------------------------------------------- /scripts/general/bb-csv-adjust.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/bb-csv-adjust.scpt -------------------------------------------------------------------------------- /scripts/general/contacts-to-csv.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/contacts-to-csv.scpt -------------------------------------------------------------------------------- /scripts/general/create-date-based-directories.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/create-date-based-directories.scpt -------------------------------------------------------------------------------- /scripts/general/dashboard-control.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/dashboard-control.scpt -------------------------------------------------------------------------------- /scripts/general/debits-reminder.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/debits-reminder.scpt -------------------------------------------------------------------------------- /scripts/general/fix-ofx-dates.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/fix-ofx-dates.scpt -------------------------------------------------------------------------------- /scripts/general/medicine-time.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/medicine-time.scpt -------------------------------------------------------------------------------- /scripts/general/process-boost.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/scripts/general/process-boost.scpt -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Abrir no Emacs 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.item 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Abrir no Emacs.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Abrir no Emacs.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 444.4 7 | AMApplicationVersion 8 | 2.8 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.cocoa.path 25 | 26 | 27 | AMActionVersion 28 | 1.1.1 29 | AMApplication 30 | 31 | Finder 32 | 33 | AMParameterProperties 34 | 35 | appPath 36 | 37 | isPathPopUp 38 | 39 | variableUUIDsInMenu 40 | 41 | 42 | 43 | AMProvides 44 | 45 | Container 46 | List 47 | Types 48 | 49 | com.apple.cocoa.path 50 | 51 | 52 | ActionBundlePath 53 | /System/Library/Automator/Open Finder Items.action 54 | ActionName 55 | Abrir Itens do Finder 56 | ActionParameters 57 | 58 | appPath 59 | /Applications/Emacs.app 60 | 61 | BundleIdentifier 62 | com.apple.Automator.OpenFinderItems 63 | CFBundleVersion 64 | 1.1.1 65 | CanShowSelectedItemsWhenRun 66 | 67 | CanShowWhenRun 68 | 69 | Category 70 | 71 | AMCategoryFilesAndFolders 72 | 73 | Class Name 74 | AMOpenFinderItems 75 | InputUUID 76 | BCF7BF8C-3EDD-4E38-B306-25F2366581BC 77 | Keywords 78 | 79 | Abrir 80 | Documento 81 | Arquivo 82 | 83 | OutputUUID 84 | FB2CDB3B-6AD5-4AB7-A6D3-A95D1BB95D2B 85 | UUID 86 | 3581AD32-E784-43AB-BC5A-391890F1E8B4 87 | UnlocalizedApplications 88 | 89 | Finder 90 | 91 | arguments 92 | 93 | 0 94 | 95 | default value 96 | 97 | name 98 | appPath 99 | required 100 | 0 101 | type 102 | 0 103 | uuid 104 | 0 105 | 106 | 107 | conversionLabel 108 | 0 109 | isViewVisible 110 | 111 | location 112 | 654.000000:174.000000 113 | nibPath 114 | /System/Library/Automator/Open Finder Items.action/Contents/Resources/Base.lproj/main.nib 115 | 116 | isViewVisible 117 | 118 | 119 | 120 | connectors 121 | 122 | workflowMetaData 123 | 124 | serviceApplicationBundleID 125 | com.apple.finder 126 | serviceApplicationPath 127 | /System/Library/CoreServices/Finder.app 128 | serviceInputTypeIdentifier 129 | com.apple.Automator.fileSystemObject 130 | serviceOutputTypeIdentifier 131 | com.apple.Automator.nothing 132 | serviceProcessesInput 133 | 0 134 | workflowTypeIdentifier 135 | com.apple.Automator.servicesMenu 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Arquivar Item 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.item 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Arquivar Item.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Arquivar Item.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 409.2 7 | AMApplicationVersion 8 | 2.5 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | * 25 | 26 | 27 | AMActionVersion 28 | v.1.0.2 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | variableUUID 36 | 37 | isPathPopUp 38 | 39 | selectedVariableUUID 40 | 167F26A3-0CF3-4BDF-A160-0596EE1B76C7 41 | 42 | 43 | AMProvides 44 | 45 | Container 46 | List 47 | Types 48 | 49 | * 50 | 51 | 52 | AMRequiredResources 53 | 54 | ActionBundlePath 55 | /System/Library/Automator/Set Value of Variable.action 56 | ActionName 57 | Ajustar Valor da Variável 58 | ActionParameters 59 | 60 | variableUUID 61 | 167F26A3-0CF3-4BDF-A160-0596EE1B76C7 62 | 63 | BundleIdentifier 64 | com.apple.Automator.Set_Value_of_Variable 65 | CFBundleVersion 66 | 1.0.2 67 | CanShowSelectedItemsWhenRun 68 | 69 | CanShowWhenRun 70 | 71 | Category 72 | 73 | AMCategoryUtilities 74 | 75 | Class Name 76 | Set_Value_of_Variable 77 | InputUUID 78 | B4C48C14-9FE2-4B70-B72C-2560F5C88A3C 79 | Keywords 80 | 81 | Variável 82 | vinculação 83 | Entrada 84 | Saída 85 | Armazenamento 86 | 87 | OutputUUID 88 | 70DAC050-2073-44D9-A579-8CDC0ABF5B36 89 | UUID 90 | 44C73AA6-CCBE-4370-9481-D331E19A52C5 91 | UnlocalizedApplications 92 | 93 | Automator 94 | 95 | arguments 96 | 97 | 0 98 | 99 | default value 100 | 101 | name 102 | variableUUID 103 | required 104 | 0 105 | type 106 | 0 107 | uuid 108 | 0 109 | 110 | 111 | isViewVisible 112 | 113 | location 114 | 447.000000:176.000000 115 | nibPath 116 | /System/Library/Automator/Set Value of Variable.action/Contents/Resources/Base.lproj/main.nib 117 | 118 | isViewVisible 119 | 120 | 121 | 122 | action 123 | 124 | AMAccepts 125 | 126 | Container 127 | List 128 | Optional 129 | 130 | Types 131 | 132 | com.apple.cocoa.path 133 | 134 | 135 | AMActionVersion 136 | 1.3.2 137 | AMApplication 138 | 139 | Finder 140 | 141 | AMParameterProperties 142 | 143 | archiveName 144 | 145 | tokenizedValue 146 | 147 | 148 | destinationPath 149 | 150 | isPathPopUp 151 | 152 | variableUUIDsInMenu 153 | 154 | 155 | ignoreUnreadableItems 156 | 157 | 158 | AMProvides 159 | 160 | Container 161 | List 162 | Types 163 | 164 | com.apple.cocoa.path 165 | 166 | 167 | ActionBundlePath 168 | /System/Library/Automator/Create Archive.action 169 | ActionName 170 | Criar Arquivo Comprimido 171 | ActionParameters 172 | 173 | archiveName 174 | 175 | destinationPath 176 | 177 | ignoreUnreadableItems 178 | 179 | 180 | BundleIdentifier 181 | com.apple.Automator.CreateZipArchive 182 | CFBundleVersion 183 | 1.3.2 184 | CanShowSelectedItemsWhenRun 185 | 186 | CanShowWhenRun 187 | 188 | Category 189 | 190 | AMCategoryFilesAndFolders 191 | 192 | Class Name 193 | Create_Archive 194 | InputUUID 195 | 372FDA55-6946-4236-9F33-7F3E0E4ADFB2 196 | Keywords 197 | 198 | Arquivo comprimido 199 | Criar 200 | Criar 201 | Arquivo 202 | Pasta 203 | Comprimir 204 | StuffIt 205 | Zip 206 | 207 | OutputUUID 208 | 5E7ADEFD-FB4B-42B3-8E80-29F802388274 209 | UUID 210 | DA9309EA-4753-45AC-B9F7-B5237CAD4EAE 211 | UnlocalizedApplications 212 | 213 | Finder 214 | 215 | arguments 216 | 217 | 0 218 | 219 | default value 220 | ~/Desktop 221 | name 222 | destinationPath 223 | required 224 | 0 225 | type 226 | 0 227 | uuid 228 | 0 229 | 230 | 1 231 | 232 | default value 233 | 234 | name 235 | ignoreUnreadableItems 236 | required 237 | 0 238 | type 239 | 0 240 | uuid 241 | 1 242 | 243 | 2 244 | 245 | default value 246 | 247 | name 248 | archiveName 249 | required 250 | 0 251 | type 252 | 0 253 | uuid 254 | 2 255 | 256 | 257 | isViewVisible 258 | 259 | location 260 | 447.000000:327.000000 261 | nibPath 262 | /System/Library/Automator/Create Archive.action/Contents/Resources/Base.lproj/main.nib 263 | 264 | isViewVisible 265 | 266 | 267 | 268 | action 269 | 270 | AMAccepts 271 | 272 | Container 273 | List 274 | Optional 275 | 276 | Types 277 | 278 | com.apple.cocoa.path 279 | 280 | 281 | AMActionVersion 282 | 1.3.2 283 | AMApplication 284 | 285 | Finder 286 | 287 | AMParameterProperties 288 | 289 | caseIndicator 290 | 291 | dateFormat 292 | 293 | datePlacement 294 | 295 | dateSeparator 296 | 297 | dateToUse 298 | 299 | defaultName 300 | 301 | ignoreCase 302 | 303 | includeExtensions 304 | 305 | insertionPosition 306 | 307 | minimumCount 308 | 309 | nameDateSeparator 310 | 311 | nameSingleItem 312 | 313 | numberLocation 314 | 315 | numberSeparator 316 | 317 | renameItems 318 | 319 | renameType 320 | 321 | replaceWithText 322 | 323 | singleItemOption 324 | 325 | startingNumber 326 | 327 | textInput 328 | 329 | textToFind 330 | 331 | useLeadingZeros 332 | 333 | 334 | AMProvides 335 | 336 | Container 337 | List 338 | Types 339 | 340 | com.apple.cocoa.path 341 | 342 | 343 | ActionBundlePath 344 | /System/Library/Automator/Rename Finder Items.action 345 | ActionName 346 | Renomear Itens do Finder: Adicionar Data ou Hora 347 | ActionParameters 348 | 349 | caseIndicator 350 | 0 351 | dateFormat 352 | 2 353 | datePlacement 354 | 1 355 | dateSeparator 356 | 1 357 | dateToUse 358 | 0 359 | defaultName 360 | 361 | ignoreCase 362 | 363 | includeExtensions 364 | 0 365 | insertionPosition 366 | 0 367 | minimumCount 368 | 2 369 | nameDateSeparator 370 | 2 371 | nameSingleItem 372 | 373 | numberLocation 374 | 0 375 | numberSeparator 376 | 0 377 | renameItems 378 | 0 379 | renameType 380 | 0 381 | replaceWithText 382 | 383 | singleItemOption 384 | 0 385 | startingNumber 386 | 1 387 | textInput 388 | 389 | textToFind 390 | 391 | useLeadingZeros 392 | 393 | 394 | BundleIdentifier 395 | com.apple.Automator.AddNumbersToFinderNames 396 | CFBundleVersion 397 | 1.3.2 398 | CanShowSelectedItemsWhenRun 399 | 400 | CanShowWhenRun 401 | 402 | Category 403 | 404 | AMCategoryFilesAndFolders 405 | 406 | Class Name 407 | AMRenameFinderItemsAction 408 | InputUUID 409 | D71C86D8-D616-4B5B-8BC1-0050EC9B5DD4 410 | Keywords 411 | 412 | Nome 413 | Arquivo 414 | Pasta 415 | Adicionar 416 | Número 417 | Alterar 418 | Maiúsculas/Minúsculas 419 | Renomear 420 | Data 421 | Hora 422 | Definir 423 | Texto 424 | Buscar 425 | Substituir 426 | Criar 427 | Sequencial 428 | 429 | OutputUUID 430 | 6AA4B0EC-DAE0-4CA5-BB28-09ABF7F2CF1B 431 | UUID 432 | 46E5A250-42D1-4E65-B085-720209786158 433 | UnlocalizedApplications 434 | 435 | Finder 436 | 437 | arguments 438 | 439 | 0 440 | 441 | default value 442 | 0 443 | name 444 | nameDateSeparator 445 | required 446 | 0 447 | type 448 | 0 449 | uuid 450 | 0 451 | 452 | 1 453 | 454 | default value 455 | 456 | name 457 | textToFind 458 | required 459 | 0 460 | type 461 | 0 462 | uuid 463 | 1 464 | 465 | 10 466 | 467 | default value 468 | 469 | name 470 | nameSingleItem 471 | required 472 | 0 473 | type 474 | 0 475 | uuid 476 | 10 477 | 478 | 11 479 | 480 | default value 481 | 482 | name 483 | ignoreCase 484 | required 485 | 0 486 | type 487 | 0 488 | uuid 489 | 11 490 | 491 | 12 492 | 493 | default value 494 | 495 | name 496 | textInput 497 | required 498 | 0 499 | type 500 | 0 501 | uuid 502 | 12 503 | 504 | 13 505 | 506 | default value 507 | 0 508 | name 509 | dateToUse 510 | required 511 | 0 512 | type 513 | 0 514 | uuid 515 | 13 516 | 517 | 14 518 | 519 | default value 520 | 0 521 | name 522 | includeExtensions 523 | required 524 | 0 525 | type 526 | 0 527 | uuid 528 | 14 529 | 530 | 15 531 | 532 | default value 533 | 534 | name 535 | replaceWithText 536 | required 537 | 0 538 | type 539 | 0 540 | uuid 541 | 15 542 | 543 | 16 544 | 545 | default value 546 | 0 547 | name 548 | renameItems 549 | required 550 | 0 551 | type 552 | 0 553 | uuid 554 | 16 555 | 556 | 17 557 | 558 | default value 559 | 560 | name 561 | defaultName 562 | required 563 | 0 564 | type 565 | 0 566 | uuid 567 | 17 568 | 569 | 18 570 | 571 | default value 572 | 1 573 | name 574 | startingNumber 575 | required 576 | 0 577 | type 578 | 0 579 | uuid 580 | 18 581 | 582 | 19 583 | 584 | default value 585 | 0 586 | name 587 | numberSeparator 588 | required 589 | 0 590 | type 591 | 0 592 | uuid 593 | 19 594 | 595 | 2 596 | 597 | default value 598 | 0 599 | name 600 | datePlacement 601 | required 602 | 0 603 | type 604 | 0 605 | uuid 606 | 2 607 | 608 | 20 609 | 610 | default value 611 | 0 612 | name 613 | caseIndicator 614 | required 615 | 0 616 | type 617 | 0 618 | uuid 619 | 20 620 | 621 | 21 622 | 623 | default value 624 | 0 625 | name 626 | dateFormat 627 | required 628 | 0 629 | type 630 | 0 631 | uuid 632 | 21 633 | 634 | 3 635 | 636 | default value 637 | 0 638 | name 639 | insertionPosition 640 | required 641 | 0 642 | type 643 | 0 644 | uuid 645 | 3 646 | 647 | 4 648 | 649 | default value 650 | 0 651 | name 652 | dateSeparator 653 | required 654 | 0 655 | type 656 | 0 657 | uuid 658 | 4 659 | 660 | 5 661 | 662 | default value 663 | 2 664 | name 665 | minimumCount 666 | required 667 | 0 668 | type 669 | 0 670 | uuid 671 | 5 672 | 673 | 6 674 | 675 | default value 676 | 0 677 | name 678 | numberLocation 679 | required 680 | 0 681 | type 682 | 0 683 | uuid 684 | 6 685 | 686 | 7 687 | 688 | default value 689 | 690 | name 691 | useLeadingZeros 692 | required 693 | 0 694 | type 695 | 0 696 | uuid 697 | 7 698 | 699 | 8 700 | 701 | default value 702 | 0 703 | name 704 | singleItemOption 705 | required 706 | 0 707 | type 708 | 0 709 | uuid 710 | 8 711 | 712 | 9 713 | 714 | default value 715 | 0 716 | name 717 | renameType 718 | required 719 | 0 720 | type 721 | 0 722 | uuid 723 | 9 724 | 725 | 726 | isViewVisible 727 | 728 | location 729 | 447.000000:539.000000 730 | nibPath 731 | /System/Library/Automator/Rename Finder Items.action/Contents/Resources/Base.lproj/main.nib 732 | 733 | isViewVisible 734 | 735 | 736 | 737 | action 738 | 739 | AMAccepts 740 | 741 | Container 742 | List 743 | Optional 744 | 745 | Types 746 | 747 | com.apple.cocoa.path 748 | 749 | 750 | AMActionVersion 751 | 1.3.2 752 | AMApplication 753 | 754 | Finder 755 | 756 | AMParameterProperties 757 | 758 | caseIndicator 759 | 760 | dateFormat 761 | 762 | datePlacement 763 | 764 | dateSeparator 765 | 766 | dateToUse 767 | 768 | defaultName 769 | 770 | ignoreCase 771 | 772 | includeExtensions 773 | 774 | insertionPosition 775 | 776 | minimumCount 777 | 778 | nameDateSeparator 779 | 780 | nameSingleItem 781 | 782 | numberLocation 783 | 784 | numberSeparator 785 | 786 | renameItems 787 | 788 | renameType 789 | 790 | replaceWithText 791 | 792 | singleItemOption 793 | 794 | startingNumber 795 | 796 | textInput 797 | 798 | tokenizedValue 799 | 800 | arquivado- 801 | 802 | 803 | textToFind 804 | 805 | useLeadingZeros 806 | 807 | 808 | AMProvides 809 | 810 | Container 811 | List 812 | Types 813 | 814 | com.apple.cocoa.path 815 | 816 | 817 | ActionBundlePath 818 | /System/Library/Automator/Rename Finder Items.action 819 | ActionName 820 | Renomear Itens do Finder: Adicionar Texto 821 | ActionParameters 822 | 823 | caseIndicator 824 | 0 825 | dateFormat 826 | 0 827 | datePlacement 828 | 0 829 | dateSeparator 830 | 0 831 | dateToUse 832 | 0 833 | defaultName 834 | 835 | ignoreCase 836 | 837 | includeExtensions 838 | 0 839 | insertionPosition 840 | 1 841 | minimumCount 842 | 2 843 | nameDateSeparator 844 | 0 845 | nameSingleItem 846 | 847 | numberLocation 848 | 0 849 | numberSeparator 850 | 0 851 | renameItems 852 | 0 853 | renameType 854 | 1 855 | replaceWithText 856 | 857 | singleItemOption 858 | 0 859 | startingNumber 860 | 1 861 | textInput 862 | arquivado- 863 | textToFind 864 | 865 | useLeadingZeros 866 | 867 | 868 | BundleIdentifier 869 | com.apple.Automator.AddNumbersToFinderNames 870 | CFBundleVersion 871 | 1.3.2 872 | CanShowSelectedItemsWhenRun 873 | 874 | CanShowWhenRun 875 | 876 | Category 877 | 878 | AMCategoryFilesAndFolders 879 | 880 | Class Name 881 | AMRenameFinderItemsAction 882 | InputUUID 883 | 9A5ABECA-5130-4B76-9ADB-14B13EA9FEB2 884 | Keywords 885 | 886 | Nome 887 | Arquivo 888 | Pasta 889 | Adicionar 890 | Número 891 | Alterar 892 | Maiúsculas/Minúsculas 893 | Renomear 894 | Data 895 | Hora 896 | Definir 897 | Texto 898 | Buscar 899 | Substituir 900 | Criar 901 | Sequencial 902 | 903 | OutputUUID 904 | 2DCABDC3-65D5-4EFE-AE46-D933097F1856 905 | UUID 906 | 747D0497-B8E6-44E2-B9CC-5C7C8122F0DF 907 | UnlocalizedApplications 908 | 909 | Finder 910 | 911 | arguments 912 | 913 | 0 914 | 915 | default value 916 | 0 917 | name 918 | nameDateSeparator 919 | required 920 | 0 921 | type 922 | 0 923 | uuid 924 | 0 925 | 926 | 1 927 | 928 | default value 929 | 930 | name 931 | textToFind 932 | required 933 | 0 934 | type 935 | 0 936 | uuid 937 | 1 938 | 939 | 10 940 | 941 | default value 942 | 943 | name 944 | nameSingleItem 945 | required 946 | 0 947 | type 948 | 0 949 | uuid 950 | 10 951 | 952 | 11 953 | 954 | default value 955 | 956 | name 957 | ignoreCase 958 | required 959 | 0 960 | type 961 | 0 962 | uuid 963 | 11 964 | 965 | 12 966 | 967 | default value 968 | 969 | name 970 | textInput 971 | required 972 | 0 973 | type 974 | 0 975 | uuid 976 | 12 977 | 978 | 13 979 | 980 | default value 981 | 0 982 | name 983 | dateToUse 984 | required 985 | 0 986 | type 987 | 0 988 | uuid 989 | 13 990 | 991 | 14 992 | 993 | default value 994 | 0 995 | name 996 | includeExtensions 997 | required 998 | 0 999 | type 1000 | 0 1001 | uuid 1002 | 14 1003 | 1004 | 15 1005 | 1006 | default value 1007 | 1008 | name 1009 | replaceWithText 1010 | required 1011 | 0 1012 | type 1013 | 0 1014 | uuid 1015 | 15 1016 | 1017 | 16 1018 | 1019 | default value 1020 | 0 1021 | name 1022 | renameItems 1023 | required 1024 | 0 1025 | type 1026 | 0 1027 | uuid 1028 | 16 1029 | 1030 | 17 1031 | 1032 | default value 1033 | 1034 | name 1035 | defaultName 1036 | required 1037 | 0 1038 | type 1039 | 0 1040 | uuid 1041 | 17 1042 | 1043 | 18 1044 | 1045 | default value 1046 | 1 1047 | name 1048 | startingNumber 1049 | required 1050 | 0 1051 | type 1052 | 0 1053 | uuid 1054 | 18 1055 | 1056 | 19 1057 | 1058 | default value 1059 | 0 1060 | name 1061 | numberSeparator 1062 | required 1063 | 0 1064 | type 1065 | 0 1066 | uuid 1067 | 19 1068 | 1069 | 2 1070 | 1071 | default value 1072 | 0 1073 | name 1074 | datePlacement 1075 | required 1076 | 0 1077 | type 1078 | 0 1079 | uuid 1080 | 2 1081 | 1082 | 20 1083 | 1084 | default value 1085 | 0 1086 | name 1087 | caseIndicator 1088 | required 1089 | 0 1090 | type 1091 | 0 1092 | uuid 1093 | 20 1094 | 1095 | 21 1096 | 1097 | default value 1098 | 0 1099 | name 1100 | dateFormat 1101 | required 1102 | 0 1103 | type 1104 | 0 1105 | uuid 1106 | 21 1107 | 1108 | 3 1109 | 1110 | default value 1111 | 0 1112 | name 1113 | insertionPosition 1114 | required 1115 | 0 1116 | type 1117 | 0 1118 | uuid 1119 | 3 1120 | 1121 | 4 1122 | 1123 | default value 1124 | 0 1125 | name 1126 | dateSeparator 1127 | required 1128 | 0 1129 | type 1130 | 0 1131 | uuid 1132 | 4 1133 | 1134 | 5 1135 | 1136 | default value 1137 | 2 1138 | name 1139 | minimumCount 1140 | required 1141 | 0 1142 | type 1143 | 0 1144 | uuid 1145 | 5 1146 | 1147 | 6 1148 | 1149 | default value 1150 | 0 1151 | name 1152 | numberLocation 1153 | required 1154 | 0 1155 | type 1156 | 0 1157 | uuid 1158 | 6 1159 | 1160 | 7 1161 | 1162 | default value 1163 | 1164 | name 1165 | useLeadingZeros 1166 | required 1167 | 0 1168 | type 1169 | 0 1170 | uuid 1171 | 7 1172 | 1173 | 8 1174 | 1175 | default value 1176 | 0 1177 | name 1178 | singleItemOption 1179 | required 1180 | 0 1181 | type 1182 | 0 1183 | uuid 1184 | 8 1185 | 1186 | 9 1187 | 1188 | default value 1189 | 0 1190 | name 1191 | renameType 1192 | required 1193 | 0 1194 | type 1195 | 0 1196 | uuid 1197 | 9 1198 | 1199 | 1200 | isViewVisible 1201 | 1202 | location 1203 | 447.000000:700.000000 1204 | nibPath 1205 | /System/Library/Automator/Rename Finder Items.action/Contents/Resources/Base.lproj/main.nib 1206 | 1207 | isViewVisible 1208 | 1209 | 1210 | 1211 | action 1212 | 1213 | AMAccepts 1214 | 1215 | Container 1216 | List 1217 | Optional 1218 | 1219 | Types 1220 | 1221 | com.apple.cocoa.path 1222 | 1223 | 1224 | AMActionVersion 1225 | 1.1.2 1226 | AMApplication 1227 | 1228 | Finder 1229 | 1230 | AMParameterProperties 1231 | 1232 | replaceExisting 1233 | 1234 | toDirectory 1235 | 1236 | isPathPopUp 1237 | 1238 | variableUUIDsInMenu 1239 | 1240 | 1241 | 1242 | AMProvides 1243 | 1244 | Container 1245 | List 1246 | Types 1247 | 1248 | com.apple.cocoa.path 1249 | 1250 | 1251 | ActionBundlePath 1252 | /System/Library/Automator/Move Finder Items.action 1253 | ActionName 1254 | Mover Itens do Finder 1255 | ActionParameters 1256 | 1257 | replaceExisting 1258 | 1259 | toDirectory 1260 | ~/archive 1261 | 1262 | BundleIdentifier 1263 | com.apple.Automator.MoveFiles 1264 | CFBundleVersion 1265 | 1.1.2 1266 | CanShowSelectedItemsWhenRun 1267 | 1268 | CanShowWhenRun 1269 | 1270 | Category 1271 | 1272 | AMCategoryFilesAndFolders 1273 | 1274 | Class Name 1275 | MoveFilesAction 1276 | InputUUID 1277 | DA60D73C-E495-47E3-B8F1-3427511EC1ED 1278 | Keywords 1279 | 1280 | Arquivo 1281 | Mover 1282 | 1283 | OutputUUID 1284 | FC50868E-35FC-49CB-8B1F-F11A8FB1A9C9 1285 | UUID 1286 | F87054E9-4605-44E5-8415-C756DE212185 1287 | UnlocalizedApplications 1288 | 1289 | Finder 1290 | 1291 | arguments 1292 | 1293 | 0 1294 | 1295 | default value 1296 | ~/Desktop 1297 | name 1298 | toDirectory 1299 | required 1300 | 0 1301 | type 1302 | 0 1303 | uuid 1304 | 0 1305 | 1306 | 1 1307 | 1308 | default value 1309 | 1310 | name 1311 | replaceExisting 1312 | required 1313 | 0 1314 | type 1315 | 0 1316 | uuid 1317 | 1 1318 | 1319 | 1320 | isViewVisible 1321 | 1322 | location 1323 | 447.000000:803.000000 1324 | nibPath 1325 | /System/Library/Automator/Move Finder Items.action/Contents/Resources/Base.lproj/main.nib 1326 | 1327 | isViewVisible 1328 | 1329 | 1330 | 1331 | action 1332 | 1333 | AMAccepts 1334 | 1335 | Container 1336 | List 1337 | Optional 1338 | 1339 | Types 1340 | 1341 | * 1342 | 1343 | 1344 | AMActionVersion 1345 | v.1.0.2 1346 | AMApplication 1347 | 1348 | Automator 1349 | 1350 | AMParameterProperties 1351 | 1352 | variableUUID 1353 | 1354 | isPathPopUp 1355 | 1356 | selectedVariableUUID 1357 | 167F26A3-0CF3-4BDF-A160-0596EE1B76C7 1358 | 1359 | 1360 | AMProvides 1361 | 1362 | Container 1363 | List 1364 | Types 1365 | 1366 | * 1367 | 1368 | 1369 | AMRequiredResources 1370 | 1371 | ActionBundlePath 1372 | /System/Library/Automator/Get Value of Variable.action 1373 | ActionName 1374 | Obter o Valor da Variável 1375 | ActionParameters 1376 | 1377 | variableUUID 1378 | 167F26A3-0CF3-4BDF-A160-0596EE1B76C7 1379 | 1380 | BundleIdentifier 1381 | com.apple.Automator.Get_Value_of_Variable 1382 | CFBundleVersion 1383 | 1.0.2 1384 | CanShowSelectedItemsWhenRun 1385 | 1386 | CanShowWhenRun 1387 | 1388 | Category 1389 | 1390 | AMCategoryUtilities 1391 | 1392 | Class Name 1393 | Get_Value_of_Variable 1394 | IgnoresInput 1395 | 1396 | InputUUID 1397 | 60BDB355-A3DF-4CCB-BD4A-5CF13D29F898 1398 | Keywords 1399 | 1400 | Variável 1401 | vinculação 1402 | Entrada 1403 | Saída 1404 | Armazenamento 1405 | 1406 | OutputUUID 1407 | FAD1ECE8-A168-429D-9D38-6B580F4D1D17 1408 | UUID 1409 | 9D6D4360-0412-43D8-AC03-F4254C337760 1410 | UnlocalizedApplications 1411 | 1412 | Automator 1413 | 1414 | arguments 1415 | 1416 | 0 1417 | 1418 | default value 1419 | 1420 | name 1421 | variableUUID 1422 | required 1423 | 0 1424 | type 1425 | 0 1426 | uuid 1427 | 0 1428 | 1429 | 1430 | isViewVisible 1431 | 1432 | location 1433 | 447.000000:906.000000 1434 | nibPath 1435 | /System/Library/Automator/Get Value of Variable.action/Contents/Resources/Base.lproj/main.nib 1436 | 1437 | isViewVisible 1438 | 1439 | 1440 | 1441 | action 1442 | 1443 | AMAccepts 1444 | 1445 | Container 1446 | List 1447 | Optional 1448 | 1449 | Types 1450 | 1451 | com.apple.cocoa.path 1452 | 1453 | 1454 | AMActionVersion 1455 | 1.1.2 1456 | AMApplication 1457 | 1458 | Finder 1459 | 1460 | AMParameterProperties 1461 | 1462 | ActionBundlePath 1463 | /System/Library/Automator/Move Finder Items to Trash.action 1464 | ActionName 1465 | Mover Itens do Finder para o Lixo 1466 | ActionParameters 1467 | 1468 | BundleIdentifier 1469 | com.apple.Automator.MoveToTrash 1470 | CFBundleVersion 1471 | 1.1.2 1472 | CanShowSelectedItemsWhenRun 1473 | 1474 | CanShowWhenRun 1475 | 1476 | Category 1477 | 1478 | AMCategoryUtilities 1479 | AMCategoryFilesAndFolders 1480 | 1481 | Class Name 1482 | MoveToTrashAction 1483 | InputUUID 1484 | 5E0BDE98-7553-4B19-8603-192A1660491B 1485 | Keywords 1486 | 1487 | Arquivo 1488 | Pasta 1489 | Mover 1490 | Lixo 1491 | Apagar 1492 | 1493 | UUID 1494 | E207A060-8E3E-4DAF-84F4-4ECBB7F536D8 1495 | UnlocalizedApplications 1496 | 1497 | Finder 1498 | 1499 | arguments 1500 | 1501 | 1502 | 1503 | 1504 | connectors 1505 | 1506 | 12833B99-6A9F-47EF-9FA5-2F008B0729C0 1507 | 1508 | from 1509 | 9D6D4360-0412-43D8-AC03-F4254C337760 - 9D6D4360-0412-43D8-AC03-F4254C337760 1510 | to 1511 | E207A060-8E3E-4DAF-84F4-4ECBB7F536D8 - E207A060-8E3E-4DAF-84F4-4ECBB7F536D8 1512 | 1513 | 248BDEE2-A776-46BA-A91D-58665D9712EF 1514 | 1515 | from 1516 | DA9309EA-4753-45AC-B9F7-B5237CAD4EAE - DA9309EA-4753-45AC-B9F7-B5237CAD4EAE 1517 | to 1518 | 46E5A250-42D1-4E65-B085-720209786158 - 46E5A250-42D1-4E65-B085-720209786158 1519 | 1520 | 46B637B2-92E4-40A6-AE30-FD768BBF53A2 1521 | 1522 | from 1523 | 46E5A250-42D1-4E65-B085-720209786158 - 46E5A250-42D1-4E65-B085-720209786158 1524 | to 1525 | 747D0497-B8E6-44E2-B9CC-5C7C8122F0DF - 747D0497-B8E6-44E2-B9CC-5C7C8122F0DF 1526 | 1527 | 6F64EE9A-D113-4079-8D63-2105E5DFC620 1528 | 1529 | from 1530 | 44C73AA6-CCBE-4370-9481-D331E19A52C5 - 44C73AA6-CCBE-4370-9481-D331E19A52C5 1531 | to 1532 | DA9309EA-4753-45AC-B9F7-B5237CAD4EAE - DA9309EA-4753-45AC-B9F7-B5237CAD4EAE 1533 | 1534 | D6EDADAC-ACCA-48AC-B151-115915757ACE 1535 | 1536 | from 1537 | F87054E9-4605-44E5-8415-C756DE212185 - F87054E9-4605-44E5-8415-C756DE212185 1538 | to 1539 | 9D6D4360-0412-43D8-AC03-F4254C337760 - 9D6D4360-0412-43D8-AC03-F4254C337760 1540 | 1541 | D9CCC544-44E3-48EE-904E-1575BBE0A020 1542 | 1543 | from 1544 | 747D0497-B8E6-44E2-B9CC-5C7C8122F0DF - 747D0497-B8E6-44E2-B9CC-5C7C8122F0DF 1545 | to 1546 | F87054E9-4605-44E5-8415-C756DE212185 - F87054E9-4605-44E5-8415-C756DE212185 1547 | 1548 | 1549 | variables 1550 | 1551 | 1552 | UUID 1553 | 167F26A3-0CF3-4BDF-A160-0596EE1B76C7 1554 | identifier 1555 | com.apple.Automator.Variable.Storage 1556 | name 1557 | itemName 1558 | 1559 | 1560 | workflowMetaData 1561 | 1562 | serviceApplicationBundleID 1563 | com.apple.finder 1564 | serviceApplicationPath 1565 | /System/Library/CoreServices/Finder.app 1566 | serviceInputTypeIdentifier 1567 | com.apple.Automator.fileSystemObject 1568 | serviceOutputTypeIdentifier 1569 | com.apple.Automator.nothing 1570 | serviceProcessesInput 1571 | 0 1572 | workflowTypeIdentifier 1573 | com.apple.Automator.servicesMenu 1574 | 1575 | 1576 | 1577 | -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Compartilhar no Hiperload 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.content 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Compartilhar no Hiperload.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Compartilhar no Hiperload.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 428 7 | AMApplicationVersion 8 | 2.7 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.applescript.object 25 | 26 | 27 | AMActionVersion 28 | 1.0.2 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | source 36 | 37 | 38 | AMProvides 39 | 40 | Container 41 | List 42 | Types 43 | 44 | com.apple.applescript.object 45 | 46 | 47 | ActionBundlePath 48 | /System/Library/Automator/Run AppleScript.action 49 | ActionName 50 | Executar AppleScript 51 | ActionParameters 52 | 53 | source 54 | on run {input, parameters} set inputFile to POSIX path of input set cmdLine to "curl --upload-file " & inputFile & " http://hiperload.com/sh/" set fileUrl to (do shell script cmdLine) return fileUrl end run 55 | 56 | BundleIdentifier 57 | com.apple.Automator.RunScript 58 | CFBundleVersion 59 | 1.0.2 60 | CanShowSelectedItemsWhenRun 61 | 62 | CanShowWhenRun 63 | 64 | Category 65 | 66 | AMCategoryUtilities 67 | 68 | Class Name 69 | RunScriptAction 70 | InputUUID 71 | C959E963-DBE5-4100-8367-D91C6E9C409D 72 | Keywords 73 | 74 | Executar 75 | 76 | OutputUUID 77 | 852721BF-84E0-43E4-82E8-24AE41870D80 78 | UUID 79 | CE8C0812-A380-423D-844B-3FE3ECB00173 80 | UnlocalizedApplications 81 | 82 | Automator 83 | 84 | arguments 85 | 86 | 0 87 | 88 | default value 89 | on run {input, parameters} 90 | 91 | (* Your script goes here *) 92 | 93 | return input 94 | end run 95 | name 96 | source 97 | required 98 | 0 99 | type 100 | 0 101 | uuid 102 | 0 103 | 104 | 105 | isViewVisible 106 | 107 | location 108 | 654.000000:112.000000 109 | nibPath 110 | /System/Library/Automator/Run AppleScript.action/Contents/Resources/Base.lproj/main.nib 111 | 112 | isViewVisible 113 | 114 | 115 | 116 | action 117 | 118 | AMAccepts 119 | 120 | Container 121 | List 122 | Optional 123 | 124 | Types 125 | 126 | * 127 | 128 | 129 | AMActionVersion 130 | v.1.0.2 131 | AMApplication 132 | 133 | Automator 134 | 135 | AMParameterProperties 136 | 137 | variableUUID 138 | 139 | isPathPopUp 140 | 141 | selectedVariableUUID 142 | 6A05714C-4741-4137-A1B5-370E5CAAEDD9 143 | 144 | 145 | AMProvides 146 | 147 | Container 148 | List 149 | Types 150 | 151 | * 152 | 153 | 154 | AMRequiredResources 155 | 156 | ActionBundlePath 157 | /System/Library/Automator/Set Value of Variable.action 158 | ActionName 159 | Definir Valor da Variável 160 | ActionParameters 161 | 162 | variableUUID 163 | 6A05714C-4741-4137-A1B5-370E5CAAEDD9 164 | 165 | BundleIdentifier 166 | com.apple.Automator.Set_Value_of_Variable 167 | CFBundleVersion 168 | 1.0.2 169 | CanShowSelectedItemsWhenRun 170 | 171 | CanShowWhenRun 172 | 173 | Category 174 | 175 | AMCategoryUtilities 176 | 177 | Class Name 178 | Set_Value_of_Variable 179 | InputUUID 180 | 78270E39-F204-49DB-BC75-2110A85F2D87 181 | Keywords 182 | 183 | Variável 184 | vinculação 185 | Entrada 186 | Saída 187 | Armazenamento 188 | 189 | OutputUUID 190 | 56FDE074-0A69-4F21-8BE6-FACE7B19CEE8 191 | UUID 192 | 4A64DEAC-DBA8-4BDF-88BB-DAD4F3835F7D 193 | UnlocalizedApplications 194 | 195 | Automator 196 | 197 | arguments 198 | 199 | 0 200 | 201 | default value 202 | 203 | name 204 | variableUUID 205 | required 206 | 0 207 | type 208 | 0 209 | uuid 210 | 0 211 | 212 | 213 | isViewVisible 214 | 215 | location 216 | 654.000000:154.000000 217 | nibPath 218 | /System/Library/Automator/Set Value of Variable.action/Contents/Resources/Base.lproj/main.nib 219 | 220 | isViewVisible 221 | 222 | 223 | 224 | action 225 | 226 | AMAccepts 227 | 228 | Container 229 | List 230 | Optional 231 | 232 | Types 233 | 234 | 235 | AMActionVersion 236 | v.1.0 237 | AMApplication 238 | 239 | Automator 240 | 241 | AMParameterProperties 242 | 243 | message 244 | 245 | tokenizedValue 246 | 247 | Arquivo carregado e disponível em 248 | $(6A05714C-4741-4137-A1B5-370E5CAAEDD9) 249 | . O URL foi carregado para a área de transferência. 250 | 251 | 252 | subtitle 253 | 254 | tokenizedValue 255 | 256 | $(6A05714C-4741-4137-A1B5-370E5CAAEDD9) 257 | 258 | 259 | title 260 | 261 | tokenizedValue 262 | 263 | Arquivo carregado no Hiperload 264 | 265 | 266 | 267 | AMProvides 268 | 269 | Container 270 | List 271 | Types 272 | 273 | 274 | ActionBundlePath 275 | /System/Library/Automator/Display Notification.action 276 | ActionName 277 | Exibir Notificação 278 | ActionParameters 279 | 280 | message 281 | Arquivo carregado e disponível em $(6A05714C-4741-4137-A1B5-370E5CAAEDD9). O URL foi carregado para a área de transferência. 282 | subtitle 283 | $(6A05714C-4741-4137-A1B5-370E5CAAEDD9) 284 | title 285 | Arquivo carregado no Hiperload 286 | 287 | BundleIdentifier 288 | com.apple.Automator.Display-Notification 289 | CFBundleVersion 290 | 1.0 291 | CanShowSelectedItemsWhenRun 292 | 293 | CanShowWhenRun 294 | 295 | Category 296 | 297 | AMCategoryUtilities 298 | 299 | Class Name 300 | AMDisplayNotificationAction 301 | InputUUID 302 | 90646FB4-D908-476C-9F2B-1C6417267CB8 303 | Keywords 304 | 305 | OutputUUID 306 | D5024256-B1D3-499F-918B-B9F6E147010D 307 | UUID 308 | 0ED5A6D1-9F97-4FF0-BA5E-EC5A084350CA 309 | UnlocalizedApplications 310 | 311 | Automator 312 | 313 | arguments 314 | 315 | 0 316 | 317 | default value 318 | 319 | name 320 | subtitle 321 | required 322 | 0 323 | type 324 | 0 325 | uuid 326 | 0 327 | 328 | 1 329 | 330 | default value 331 | 332 | name 333 | title 334 | required 335 | 0 336 | type 337 | 0 338 | uuid 339 | 1 340 | 341 | 2 342 | 343 | default value 344 | 345 | name 346 | message 347 | required 348 | 0 349 | type 350 | 0 351 | uuid 352 | 2 353 | 354 | 355 | isViewVisible 356 | 357 | location 358 | 654.000000:196.000000 359 | nibPath 360 | /System/Library/Automator/Display Notification.action/Contents/Resources/Base.lproj/main.nib 361 | 362 | isViewVisible 363 | 364 | 365 | 366 | action 367 | 368 | AMAccepts 369 | 370 | Container 371 | List 372 | Optional 373 | 374 | Types 375 | 376 | * 377 | 378 | 379 | AMActionVersion 380 | v.1.0.2 381 | AMApplication 382 | 383 | Automator 384 | 385 | AMParameterProperties 386 | 387 | variableUUID 388 | 389 | isPathPopUp 390 | 391 | selectedVariableUUID 392 | 6A05714C-4741-4137-A1B5-370E5CAAEDD9 393 | 394 | 395 | AMProvides 396 | 397 | Container 398 | List 399 | Types 400 | 401 | * 402 | 403 | 404 | AMRequiredResources 405 | 406 | ActionBundlePath 407 | /System/Library/Automator/Get Value of Variable.action 408 | ActionName 409 | Obter o Valor da Variável 410 | ActionParameters 411 | 412 | variableUUID 413 | 6A05714C-4741-4137-A1B5-370E5CAAEDD9 414 | 415 | BundleIdentifier 416 | com.apple.Automator.Get_Value_of_Variable 417 | CFBundleVersion 418 | 1.0.2 419 | CanShowSelectedItemsWhenRun 420 | 421 | CanShowWhenRun 422 | 423 | Category 424 | 425 | AMCategoryUtilities 426 | 427 | Class Name 428 | Get_Value_of_Variable 429 | IgnoresInput 430 | 431 | InputUUID 432 | F9D40772-C3C2-4B1D-AE9D-FCADC82A230B 433 | Keywords 434 | 435 | Variável 436 | vinculação 437 | Entrada 438 | Saída 439 | Armazenamento 440 | 441 | OutputUUID 442 | 655176C4-EDCD-481F-9776-04A3255A098D 443 | UUID 444 | 266E5C53-A0DD-4506-927F-6ED161CA597B 445 | UnlocalizedApplications 446 | 447 | Automator 448 | 449 | arguments 450 | 451 | 0 452 | 453 | default value 454 | 455 | name 456 | variableUUID 457 | required 458 | 0 459 | type 460 | 0 461 | uuid 462 | 0 463 | 464 | 465 | isViewVisible 466 | 467 | location 468 | 654.000000:238.000000 469 | nibPath 470 | /System/Library/Automator/Get Value of Variable.action/Contents/Resources/Base.lproj/main.nib 471 | 472 | isViewVisible 473 | 474 | 475 | 476 | action 477 | 478 | AMAccepts 479 | 480 | Container 481 | List 482 | Optional 483 | 484 | Types 485 | 486 | com.apple.cocoa.attributed-string 487 | 488 | 489 | AMActionVersion 490 | 1.2.1 491 | AMApplication 492 | 493 | Sistema 494 | 495 | AMParameterProperties 496 | 497 | AMProvides 498 | 499 | Container 500 | List 501 | Optional 502 | 503 | Types 504 | 505 | com.apple.cocoa.attributed-string 506 | 507 | 508 | ActionBundlePath 509 | /System/Library/Automator/Copy to Clipboard.action 510 | ActionName 511 | Copiar para Área de Transferência 512 | ActionParameters 513 | 514 | BundleIdentifier 515 | com.apple.Automator.CopyToClipboard 516 | CFBundleVersion 517 | 1.2.1 518 | CanShowSelectedItemsWhenRun 519 | 520 | CanShowWhenRun 521 | 522 | Category 523 | 524 | AMCategoryUtilities 525 | 526 | Class Name 527 | AMCopyToClipboardAction 528 | InputUUID 529 | 65196819-B83D-430D-B92B-B2BB68293368 530 | Keywords 531 | 532 | Copiar 533 | 534 | OutputUUID 535 | 34D00D30-B101-4E0A-B9F9-EB84BFA85786 536 | UUID 537 | D301E8A0-C82E-41F6-8E42-F07C60E76C78 538 | UnlocalizedApplications 539 | 540 | System 541 | 542 | arguments 543 | 544 | 545 | 546 | 547 | connectors 548 | 549 | 38A4C6EE-7654-4C5C-92B6-3CA1619BFDA5 550 | 551 | from 552 | 0ED5A6D1-9F97-4FF0-BA5E-EC5A084350CA - 0ED5A6D1-9F97-4FF0-BA5E-EC5A084350CA 553 | to 554 | 266E5C53-A0DD-4506-927F-6ED161CA597B - 266E5C53-A0DD-4506-927F-6ED161CA597B 555 | 556 | 50709957-3F3B-4258-B047-F46F280B97F1 557 | 558 | from 559 | 4A64DEAC-DBA8-4BDF-88BB-DAD4F3835F7D - 4A64DEAC-DBA8-4BDF-88BB-DAD4F3835F7D 560 | to 561 | 0ED5A6D1-9F97-4FF0-BA5E-EC5A084350CA - 0ED5A6D1-9F97-4FF0-BA5E-EC5A084350CA 562 | 563 | 7CF5226B-8FE4-4252-8F7D-7DB02AAD4C21 564 | 565 | from 566 | CE8C0812-A380-423D-844B-3FE3ECB00173 - CE8C0812-A380-423D-844B-3FE3ECB00173 567 | to 568 | 4A64DEAC-DBA8-4BDF-88BB-DAD4F3835F7D - 4A64DEAC-DBA8-4BDF-88BB-DAD4F3835F7D 569 | 570 | A36C0B23-E7DE-4D25-96BF-3FDC394EA66E 571 | 572 | from 573 | 266E5C53-A0DD-4506-927F-6ED161CA597B - 266E5C53-A0DD-4506-927F-6ED161CA597B 574 | to 575 | D301E8A0-C82E-41F6-8E42-F07C60E76C78 - D301E8A0-C82E-41F6-8E42-F07C60E76C78 576 | 577 | 578 | variables 579 | 580 | 581 | UUID 582 | 6A05714C-4741-4137-A1B5-370E5CAAEDD9 583 | identifier 584 | com.apple.Automator.Variable.Storage 585 | name 586 | fileURL 587 | 588 | 589 | workflowMetaData 590 | 591 | serviceApplicationBundleID 592 | com.apple.finder 593 | serviceApplicationPath 594 | /System/Library/CoreServices/Finder.app 595 | serviceInputTypeIdentifier 596 | com.apple.Automator.fileSystemObject.document 597 | serviceOutputTypeIdentifier 598 | com.apple.Automator.nothing 599 | serviceProcessesInput 600 | 0 601 | workflowTypeIdentifier 602 | com.apple.Automator.servicesMenu 603 | 604 | 605 | 606 | -------------------------------------------------------------------------------- /workflows/services/Converter Tabbar Icons @3x.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Converter Tabbar Icons @3x 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Converter Tabbar Icons @3x.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Converter Tabbar Icons @3x.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Converter para JPEG 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Converter para JPEG.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para JPEG.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 381 7 | AMApplicationVersion 8 | 2.4 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | public.image 25 | public.item 26 | 27 | 28 | AMActionVersion 29 | 2.2.1 30 | AMApplication 31 | 32 | Pixelmator 33 | 34 | AMParameterProperties 35 | 36 | format 37 | 38 | 39 | AMProvides 40 | 41 | Container 42 | List 43 | Types 44 | 45 | public.image 46 | 47 | 48 | AMRequiredResources 49 | 50 | ActionBundlePath 51 | /Applications/Pixelmator.app/Contents/Library/Automator/Change Type of Images.action 52 | ActionName 53 | Change Type of Images 54 | ActionParameters 55 | 56 | format 57 | jpg 58 | 59 | BundleIdentifier 60 | com.pixelmator.automator.change 61 | CFBundleVersion 62 | 2.2.1 63 | CanShowSelectedItemsWhenRun 64 | 65 | CanShowWhenRun 66 | 67 | Category 68 | 69 | AMCategoryPhotos 70 | 71 | Class Name 72 | PXAMChangeTypeOfImages 73 | InputUUID 74 | 51A5BA59-9FDA-4958-A6DC-D0B0FA475653 75 | Keywords 76 | 77 | OutputUUID 78 | FF3ED939-3190-4C9A-A1A3-00D52903B7E2 79 | UUID 80 | 46763B64-DDC7-44CC-9533-0A2E4C123666 81 | UnlocalizedApplications 82 | 83 | Pixelmator 84 | 85 | arguments 86 | 87 | 0 88 | 89 | default value 90 | pxm 91 | name 92 | format 93 | required 94 | 0 95 | type 96 | 0 97 | uuid 98 | 0 99 | 100 | 101 | isViewVisible 102 | 103 | location 104 | 308.500000:531.000000 105 | nibPath 106 | /Applications/Pixelmator.app/Contents/Library/Automator/Change Type of Images.action/Contents/Resources/English.lproj/Change Type of Images.nib 107 | 108 | isViewVisible 109 | 110 | 111 | 112 | connectors 113 | 114 | workflowMetaData 115 | 116 | serviceApplicationBundleID 117 | com.apple.finder 118 | serviceApplicationPath 119 | /System/Library/CoreServices/Finder.app 120 | serviceInputTypeIdentifier 121 | com.apple.Automator.fileSystemObject.image 122 | serviceOutputTypeIdentifier 123 | com.apple.Automator.nothing 124 | serviceProcessesInput 125 | 0 126 | workflowTypeIdentifier 127 | com.apple.Automator.servicesMenu 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Converter para PNG 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Converter para PNG.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para PNG.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 381 7 | AMApplicationVersion 8 | 2.4 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.cocoa.url 25 | 26 | 27 | AMActionVersion 28 | 1.1.1 29 | AMApplication 30 | 31 | Finder 32 | 33 | AMParameterProperties 34 | 35 | AMProvides 36 | 37 | Container 38 | List 39 | Types 40 | 41 | com.apple.cocoa.url 42 | 43 | 44 | AMRequiredResources 45 | 46 | ActionBundlePath 47 | /System/Library/Automator/Duplicate Finder Items.action 48 | ActionName 49 | Duplicar Itens do Finder 50 | ActionParameters 51 | 52 | BundleIdentifier 53 | com.apple.Automator.Duplicate_Finder_Items 54 | CFBundleVersion 55 | 1.1.1 56 | CanShowSelectedItemsWhenRun 57 | 58 | CanShowWhenRun 59 | 60 | Category 61 | 62 | AMCategoryFilesAndFolders 63 | 64 | Class Name 65 | AMDuplicateFinderItemsAction 66 | InputUUID 67 | 533E5330-D435-4041-B87C-1045F4EAEE5A 68 | Keywords 69 | 70 | Duplicate 71 | File 72 | Copy 73 | 74 | OutputUUID 75 | 5AF50672-0C09-4911-94A2-D6477957B6AC 76 | UUID 77 | 36A7E9D5-C23B-4EEB-B082-9F7196FCDAC2 78 | UnlocalizedApplications 79 | 80 | Finder 81 | 82 | arguments 83 | 84 | 85 | 86 | 87 | action 88 | 89 | AMAccepts 90 | 91 | Container 92 | List 93 | Optional 94 | 95 | Types 96 | 97 | com.apple.cocoa.path 98 | 99 | 100 | AMActionVersion 101 | 1.1.1 102 | AMApplication 103 | 104 | Pré-Visualização 105 | 106 | AMParameterProperties 107 | 108 | imageType 109 | 110 | 111 | AMProvides 112 | 113 | Container 114 | List 115 | Types 116 | 117 | com.apple.cocoa.path 118 | 119 | 120 | ActionBundlePath 121 | /System/Library/Automator/Change Type of Images.action 122 | ActionName 123 | Alterar Tipo de Imagens 124 | ActionParameters 125 | 126 | imageType 127 | PNG 128 | 129 | BundleIdentifier 130 | com.apple.Automator.ChangeImageType 131 | CFBundleVersion 132 | 1.1.1 133 | CanShowSelectedItemsWhenRun 134 | 135 | CanShowWhenRun 136 | 137 | Category 138 | 139 | AMCategoryPhotos 140 | 141 | Class Name 142 | AMChangeImageTypeAction 143 | InputUUID 144 | EC576E11-28DA-4D5B-9332-07432FA33C3E 145 | Keywords 146 | 147 | Imagem 148 | Foto 149 | Alterar 150 | Converter 151 | Definir 152 | 153 | OutputUUID 154 | 9BADD793-388B-479E-970B-F7FCFD357564 155 | UUID 156 | 716D0A91-5B42-4B0D-BFBC-AFA5C6629E12 157 | UnlocalizedApplications 158 | 159 | Preview 160 | 161 | arguments 162 | 163 | 0 164 | 165 | default value 166 | TIFF 167 | name 168 | imageType 169 | required 170 | 0 171 | type 172 | 0 173 | uuid 174 | 0 175 | 176 | 177 | isViewVisible 178 | 179 | location 180 | 308.500000:465.000000 181 | nibPath 182 | /System/Library/Automator/Change Type of Images.action/Contents/Resources/Base.lproj/main.nib 183 | 184 | isViewVisible 185 | 186 | 187 | 188 | connectors 189 | 190 | E147AA66-CE86-4300-95C3-521B707A2E33 191 | 192 | from 193 | 36A7E9D5-C23B-4EEB-B082-9F7196FCDAC2 - 36A7E9D5-C23B-4EEB-B082-9F7196FCDAC2 194 | to 195 | 716D0A91-5B42-4B0D-BFBC-AFA5C6629E12 - 716D0A91-5B42-4B0D-BFBC-AFA5C6629E12 196 | 197 | 198 | variables 199 | 200 | 201 | UUID 202 | 08229EE9-BC53-4CFF-AC30-174CEEBA92B1 203 | identifier 204 | com.apple.Automator.Variable.Storage 205 | name 206 | originalFiles 207 | 208 | 209 | workflowMetaData 210 | 211 | serviceApplicationBundleID 212 | com.apple.finder 213 | serviceApplicationPath 214 | /System/Library/CoreServices/Finder.app 215 | serviceInputTypeIdentifier 216 | com.apple.Automator.fileSystemObject.image 217 | serviceOutputTypeIdentifier 218 | com.apple.Automator.nothing 219 | serviceProcessesInput 220 | 0 221 | workflowTypeIdentifier 222 | com.apple.Automator.servicesMenu 223 | 224 | 225 | 226 | -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Converter para PSD 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Converter para PSD.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/services/Converter para PSD.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 381 7 | AMApplicationVersion 8 | 2.4 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | public.image 25 | public.item 26 | 27 | 28 | AMActionVersion 29 | 2.2.1 30 | AMApplication 31 | 32 | Pixelmator 33 | 34 | AMParameterProperties 35 | 36 | format 37 | 38 | 39 | AMProvides 40 | 41 | Container 42 | List 43 | Types 44 | 45 | public.image 46 | 47 | 48 | AMRequiredResources 49 | 50 | ActionBundlePath 51 | /Applications/Pixelmator.app/Contents/Library/Automator/Change Type of Images.action 52 | ActionName 53 | Change Type of Images 54 | ActionParameters 55 | 56 | format 57 | psd 58 | 59 | BundleIdentifier 60 | com.pixelmator.automator.change 61 | CFBundleVersion 62 | 2.2.1 63 | CanShowSelectedItemsWhenRun 64 | 65 | CanShowWhenRun 66 | 67 | Category 68 | 69 | AMCategoryPhotos 70 | 71 | Class Name 72 | PXAMChangeTypeOfImages 73 | InputUUID 74 | 04C6C46B-59E0-4800-A2A2-4C2EDB29518E 75 | Keywords 76 | 77 | OutputUUID 78 | F18FD864-95CA-413D-A6AF-0F056D900F60 79 | UUID 80 | F26B69B5-18EE-4E80-8A4B-C566E5EA09FF 81 | UnlocalizedApplications 82 | 83 | Pixelmator 84 | 85 | arguments 86 | 87 | 0 88 | 89 | default value 90 | pxm 91 | name 92 | format 93 | required 94 | 0 95 | type 96 | 0 97 | uuid 98 | 0 99 | 100 | 101 | isViewVisible 102 | 103 | location 104 | 308.500000:531.000000 105 | nibPath 106 | /Applications/Pixelmator.app/Contents/Library/Automator/Change Type of Images.action/Contents/Resources/English.lproj/Change Type of Images.nib 107 | 108 | isViewVisible 109 | 110 | 111 | 112 | connectors 113 | 114 | workflowMetaData 115 | 116 | serviceApplicationBundleID 117 | com.apple.finder 118 | serviceApplicationPath 119 | /System/Library/CoreServices/Finder.app 120 | serviceInputTypeIdentifier 121 | com.apple.Automator.fileSystemObject.image 122 | serviceOutputTypeIdentifier 123 | com.apple.Automator.nothing 124 | serviceProcessesInput 125 | 0 126 | workflowTypeIdentifier 127 | com.apple.Automator.servicesMenu 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Criar Lembrete 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.mail 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Criar Lembrete.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Criar Lembrete.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 444.1 7 | AMApplicationVersion 8 | 2.8 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.mail.message-object 25 | com.apple.mail.mailbox-object 26 | com.apple.mail.account-object 27 | 28 | 29 | AMActionVersion 30 | 2.0.2 31 | AMApplication 32 | 33 | Mail 34 | 35 | AMParameterProperties 36 | 37 | itemType 38 | 39 | 40 | AMProvides 41 | 42 | Container 43 | List 44 | Types 45 | 46 | com.apple.mail.message-object 47 | com.apple.mail.mailbox-object 48 | com.apple.mail.account-object 49 | 50 | 51 | AMRequiredResources 52 | 53 | AMSelectedInputType 54 | com.apple.mail.message-object 55 | AMSelectedOutputType 56 | com.apple.mail.message-object 57 | ActionBundlePath 58 | /System/Library/Automator/Get Selected Mail Items 2.action 59 | ActionName 60 | Obter Mensagens Selecionadas do Mail 61 | ActionParameters 62 | 63 | itemType 64 | com.apple.mail.message-object 65 | 66 | BundleIdentifier 67 | com.apple.Automator.GetSelectedMailItems2 68 | CFBundleVersion 69 | 2.0.2 70 | CanShowSelectedItemsWhenRun 71 | 72 | CanShowWhenRun 73 | 74 | Category 75 | 76 | AMCategoryMail 77 | 78 | Class Name 79 | Get_Selected_Mail_Items_2 80 | InputUUID 81 | 92D30443-BE2F-410A-8484-E9D283A91610 82 | Keywords 83 | 84 | OutputUUID 85 | 5D3B0EE4-1EE9-4153-BA34-F6042AEB7772 86 | UUID 87 | 142B1288-1244-4B0F-B641-A6FF13B6EBF3 88 | UnlocalizedApplications 89 | 90 | Mail 91 | 92 | arguments 93 | 94 | 0 95 | 96 | default value 97 | com.apple.mail.message-object 98 | name 99 | itemType 100 | required 101 | 0 102 | type 103 | 0 104 | uuid 105 | 0 106 | 107 | 108 | isViewVisible 109 | 110 | location 111 | 646.500000:173.000000 112 | nibPath 113 | /System/Library/Automator/Get Selected Mail Items 2.action/Contents/Resources/Base.lproj/main.nib 114 | 115 | isViewVisible 116 | 117 | 118 | 119 | action 120 | 121 | AMAccepts 122 | 123 | Container 124 | List 125 | Optional 126 | 127 | Types 128 | 129 | com.apple.applescript.object 130 | 131 | 132 | AMActionVersion 133 | 1.0.2 134 | AMApplication 135 | 136 | Automator 137 | 138 | AMParameterProperties 139 | 140 | source 141 | 142 | 143 | AMProvides 144 | 145 | Container 146 | List 147 | Types 148 | 149 | com.apple.applescript.object 150 | 151 | 152 | ActionBundlePath 153 | /System/Library/Automator/Run AppleScript.action 154 | ActionName 155 | Executar AppleScript 156 | ActionParameters 157 | 158 | source 159 | on run {input, parameters} set mailTitles to {} tell application "Mail" repeat with selectedMessage in input set messageSubject to (selectedMessage's subject) set messageContent to (selectedMessage's content) set taskTitle to "Email de " & (extract name from selectedMessage's sender) & " - " & messageSubject copy taskTitle to the end of mailTitles end repeat end tell return mailTitles end run 160 | 161 | BundleIdentifier 162 | com.apple.Automator.RunScript 163 | CFBundleVersion 164 | 1.0.2 165 | CanShowSelectedItemsWhenRun 166 | 167 | CanShowWhenRun 168 | 169 | Category 170 | 171 | AMCategoryUtilities 172 | 173 | Class Name 174 | RunScriptAction 175 | InputUUID 176 | E8EA33B5-2D7E-45D4-A48B-5B9FD073E871 177 | Keywords 178 | 179 | Executar 180 | 181 | OutputUUID 182 | B3044A98-6DEA-4935-A147-A89A42B82EC1 183 | UUID 184 | 14655108-16F5-487B-871C-20CB82418F2E 185 | UnlocalizedApplications 186 | 187 | Automator 188 | 189 | arguments 190 | 191 | 0 192 | 193 | default value 194 | on run {input, parameters} 195 | 196 | (* Your script goes here *) 197 | 198 | return input 199 | end run 200 | name 201 | source 202 | required 203 | 0 204 | type 205 | 0 206 | uuid 207 | 0 208 | 209 | 210 | isViewVisible 211 | 212 | location 213 | 646.500000:419.000000 214 | nibPath 215 | /System/Library/Automator/Run AppleScript.action/Contents/Resources/Base.lproj/main.nib 216 | 217 | isViewVisible 218 | 219 | 220 | 221 | action 222 | 223 | AMAccepts 224 | 225 | Container 226 | List 227 | Optional 228 | 229 | Types 230 | 231 | com.apple.cocoa.string 232 | 233 | 234 | AMActionVersion 235 | 2.0.1 236 | AMApplication 237 | 238 | Mail 239 | Calendário 240 | 241 | AMParameterProperties 242 | 243 | alarmDate 244 | 245 | alarmEmail 246 | 247 | alarmFile 248 | 249 | isPathPopUp 250 | 251 | variableUUIDsInMenu 252 | 253 | 254 | alarmKickoff 255 | 256 | alarmScript 257 | 258 | isPathPopUp 259 | 260 | variableUUIDsInMenu 261 | 262 | 263 | alarmSound 264 | 265 | alarmTime 266 | 267 | alarmTimeInterval 268 | 269 | alarmType 270 | 271 | calendarName 272 | 273 | calendarUID 274 | 275 | dueDate 276 | 277 | dueDateEnabled 278 | 279 | existingCalendar 280 | 281 | priority 282 | 283 | priorityEnabled 284 | 285 | todoTitle 286 | 287 | 288 | AMProvides 289 | 290 | Container 291 | List 292 | Types 293 | 294 | com.apple.event-kit.reminder 295 | 296 | 297 | AMRequiredResources 298 | 299 | ActionBundlePath 300 | /System/Library/Automator/New Reminders Item.action 301 | ActionName 302 | Novo Item do Lembretes 303 | ActionParameters 304 | 305 | alarmDate 306 | 2015-04-20T00:00:30Z 307 | alarmEmail 308 | ronlima@icloud.com 309 | alarmFile 310 | /Applications/Calendars.app 311 | alarmKickoff 312 | 6 313 | alarmScript 314 | 315 | alarmSound 316 | Basso 317 | alarmTime 318 | 2000-12-31T18:00:00Z 319 | alarmTimeInterval 320 | 0 321 | alarmType 322 | 323 | calendarName 324 | Nova Lista 325 | calendarUID 326 | AC68AEDC-FA13-45BB-8EB3-4C20CF4CEFB3 327 | dueDate 328 | 2015-04-20T00:00:30Z 329 | dueDateEnabled 330 | 331 | existingCalendar 332 | 1 333 | priority 334 | 5 335 | priorityEnabled 336 | 337 | todoTitle 338 | 339 | 340 | BundleIdentifier 341 | com.apple.Automator.NewToDoItem 342 | CFBundleVersion 343 | 2.0.1 344 | CanShowSelectedItemsWhenRun 345 | 346 | CanShowWhenRun 347 | 348 | Category 349 | 350 | AMCategoryCalendar 351 | AMCategoryMail 352 | 353 | Class Name 354 | New_To_Do_Item 355 | InputUUID 356 | FBC15210-ADBE-49E3-B6A7-04F613AD9893 357 | Keywords 358 | 359 | To Do 360 | Todo 361 | Reminder 362 | 363 | OutputUUID 364 | 1314535D-2425-43E5-8350-52B7CCC082B4 365 | UUID 366 | 79B6780B-5484-4E09-A3C9-224E47E3F7DA 367 | UnlocalizedApplications 368 | 369 | Mail 370 | Calendar 371 | 372 | arguments 373 | 374 | 0 375 | 376 | default value 377 | 378 | name 379 | alarmType 380 | required 381 | 0 382 | type 383 | 0 384 | uuid 385 | 0 386 | 387 | 1 388 | 389 | default value 390 | Nova Lista 391 | name 392 | calendarName 393 | required 394 | 0 395 | type 396 | 0 397 | uuid 398 | 1 399 | 400 | 10 401 | 402 | default value 403 | /Applications/Calendar.app 404 | name 405 | alarmFile 406 | required 407 | 0 408 | type 409 | 0 410 | uuid 411 | 10 412 | 413 | 11 414 | 415 | default value 416 | 417 | name 418 | calendarUID 419 | required 420 | 0 421 | type 422 | 0 423 | uuid 424 | 11 425 | 426 | 12 427 | 428 | default value 429 | 430 | name 431 | todoTitle 432 | required 433 | 0 434 | type 435 | 0 436 | uuid 437 | 12 438 | 439 | 13 440 | 441 | default value 442 | 443 | name 444 | alarmEmail 445 | required 446 | 0 447 | type 448 | 0 449 | uuid 450 | 13 451 | 452 | 14 453 | 454 | default value 455 | 456 | name 457 | alarmScript 458 | required 459 | 0 460 | type 461 | 0 462 | uuid 463 | 14 464 | 465 | 15 466 | 467 | default value 468 | 469 | name 470 | dueDateEnabled 471 | required 472 | 0 473 | type 474 | 0 475 | uuid 476 | 15 477 | 478 | 16 479 | 480 | default value 481 | 0 482 | name 483 | alarmTimeInterval 484 | required 485 | 0 486 | type 487 | 0 488 | uuid 489 | 16 490 | 491 | 2 492 | 493 | default value 494 | 495 | name 496 | priorityEnabled 497 | required 498 | 0 499 | type 500 | 0 501 | uuid 502 | 2 503 | 504 | 3 505 | 506 | default value 507 | 6 508 | name 509 | alarmKickoff 510 | required 511 | 0 512 | type 513 | 0 514 | uuid 515 | 3 516 | 517 | 4 518 | 519 | default value 520 | 521 | name 522 | dueDate 523 | required 524 | 0 525 | type 526 | 0 527 | uuid 528 | 4 529 | 530 | 5 531 | 532 | default value 533 | 1 534 | name 535 | existingCalendar 536 | required 537 | 0 538 | type 539 | 0 540 | uuid 541 | 5 542 | 543 | 6 544 | 545 | default value 546 | 547 | name 548 | alarmDate 549 | required 550 | 0 551 | type 552 | 0 553 | uuid 554 | 6 555 | 556 | 7 557 | 558 | default value 559 | 5 560 | name 561 | priority 562 | required 563 | 0 564 | type 565 | 0 566 | uuid 567 | 7 568 | 569 | 8 570 | 571 | default value 572 | 573 | name 574 | alarmTime 575 | required 576 | 0 577 | type 578 | 0 579 | uuid 580 | 8 581 | 582 | 9 583 | 584 | default value 585 | 586 | name 587 | alarmSound 588 | required 589 | 0 590 | type 591 | 0 592 | uuid 593 | 9 594 | 595 | 596 | isViewVisible 597 | 598 | location 599 | 646.500000:661.000000 600 | nibPath 601 | /System/Library/Automator/New Reminders Item.action/Contents/Resources/Base.lproj/main.nib 602 | 603 | isViewVisible 604 | 605 | 606 | 607 | connectors 608 | 609 | 5C9A75D9-CEBA-4B1C-B88B-B9B4FD673281 610 | 611 | from 612 | 14655108-16F5-487B-871C-20CB82418F2E - 14655108-16F5-487B-871C-20CB82418F2E 613 | to 614 | 79B6780B-5484-4E09-A3C9-224E47E3F7DA - 79B6780B-5484-4E09-A3C9-224E47E3F7DA 615 | 616 | F300249A-4AB7-47DE-AAF9-C0692CA2C212 617 | 618 | from 619 | 142B1288-1244-4B0F-B641-A6FF13B6EBF3 - 142B1288-1244-4B0F-B641-A6FF13B6EBF3 620 | to 621 | 14655108-16F5-487B-871C-20CB82418F2E - 14655108-16F5-487B-871C-20CB82418F2E 622 | 623 | 624 | workflowMetaData 625 | 626 | serviceApplicationBundleID 627 | com.apple.mail 628 | serviceApplicationPath 629 | /Applications/Mail.app 630 | serviceInputTypeIdentifier 631 | com.apple.Automator.nothing 632 | serviceOutputTypeIdentifier 633 | com.apple.Automator.nothing 634 | serviceProcessesInput 635 | 0 636 | workflowTypeIdentifier 637 | com.apple.Automator.servicesMenu 638 | 639 | 640 | 641 | -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Exportar Pages para PDF 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.content 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Exportar Pages para PDF.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Exportar Pages para PDF.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 409 7 | AMApplicationVersion 8 | 2.5 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.applescript.object 25 | 26 | 27 | AMActionVersion 28 | 1.0.2 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | source 36 | 37 | 38 | AMProvides 39 | 40 | Container 41 | List 42 | Types 43 | 44 | com.apple.applescript.object 45 | 46 | 47 | ActionBundlePath 48 | /System/Library/Automator/Run AppleScript.action 49 | ActionName 50 | Executar AppleScript 51 | ActionParameters 52 | 53 | source 54 | on run {input, parameters} tell application "Pages" activate if class of input is not equal to list then set input to {input} end if repeat with documentFile in input tell application "Finder" set docName to name of documentFile set outputFolder to folder of documentFile end tell if docName ends with ".pages" then set pdfName to text 1 thru -1 of docName & ".pdf" set pdfFile to (outputFolder as string) & pdfName set pagesDocument to open documentFile tell application "Finder" to set visible of process "Pages" to false export front document to file pdfFile as PDF close pagesDocument else display alert "Erro!" message "O documento " & docName & " não é pages" end if end repeat end tell return input end run 55 | 56 | BundleIdentifier 57 | com.apple.Automator.RunScript 58 | CFBundleVersion 59 | 1.0.2 60 | CanShowSelectedItemsWhenRun 61 | 62 | CanShowWhenRun 63 | 64 | Category 65 | 66 | AMCategoryUtilities 67 | 68 | Class Name 69 | RunScriptAction 70 | InputUUID 71 | 7C3F47E3-585D-4C3C-9893-6B7AF68D9DBF 72 | Keywords 73 | 74 | Executar 75 | 76 | OutputUUID 77 | 99ABFA3A-DA2C-4EAB-91B5-F8455AA4BE18 78 | UUID 79 | F7BD16F4-0CC0-498A-8892-BD3C81E2C00F 80 | UnlocalizedApplications 81 | 82 | Automator 83 | 84 | arguments 85 | 86 | 0 87 | 88 | default value 89 | on run {input, parameters} 90 | 91 | (* Your script goes here *) 92 | 93 | return input 94 | end run 95 | name 96 | source 97 | required 98 | 0 99 | type 100 | 0 101 | uuid 102 | 0 103 | 104 | 105 | isViewVisible 106 | 107 | location 108 | 580.500000:593.000000 109 | nibPath 110 | /System/Library/Automator/Run AppleScript.action/Contents/Resources/Base.lproj/main.nib 111 | 112 | isViewVisible 113 | 114 | 115 | 116 | connectors 117 | 118 | workflowMetaData 119 | 120 | serviceApplicationBundleID 121 | com.apple.finder 122 | serviceApplicationPath 123 | /System/Library/CoreServices/Finder.app 124 | serviceInputTypeIdentifier 125 | com.apple.Automator.fileSystemObject.document 126 | serviceOutputTypeIdentifier 127 | com.apple.Automator.nothing 128 | serviceProcessesInput 129 | 0 130 | workflowTypeIdentifier 131 | com.apple.Automator.servicesMenu 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /workflows/services/Image Set para iOS.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Image Set para IOS 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Image Set para iOS.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Image Set para iOS.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Pages para PDF 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.content 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Pages para PDF.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Pages para PDF.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 419 7 | AMApplicationVersion 8 | 2.6 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.applescript.object 25 | 26 | 27 | AMActionVersion 28 | 1.0.2 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | source 36 | 37 | 38 | AMProvides 39 | 40 | Container 41 | List 42 | Types 43 | 44 | com.apple.applescript.object 45 | 46 | 47 | ActionBundlePath 48 | /System/Library/Automator/Run AppleScript.action 49 | ActionName 50 | Executar AppleScript 51 | ActionParameters 52 | 53 | source 54 | on run {input, parameters} set wrongFiles to {} repeat with inputFile in input set outputFile to (pdfFileName for POSIX path of inputFile) if not isPagesFile(POSIX path of inputFile) then copy (POSIX path of inputFile) to the end of wrongFiles else tell application "Pages" set doc to open inputFile export doc to outputFile as PDF close doc end tell end if end repeat return wrongFiles end run on pdfFileName for pagesFile set delimiters to AppleScript's text item delimiters set AppleScript's text item delimiters to {"."} set fileName to first text item of pagesFile set AppleScript's text item delimiters to delimiters set fileName to fileName & ".pdf" return POSIX file fileName end pdfFileName on isPagesFile(inputFile) set delimiters to AppleScript's text item delimiters set AppleScript's text item delimiters to {"."} set extension to second text item of inputFile set returnValue to (extension = "pages" or extension = "PAGES" or extension = "pages/" or extension = "PAGES/") return returnValue end isPagesFile 55 | 56 | BundleIdentifier 57 | com.apple.Automator.RunScript 58 | CFBundleVersion 59 | 1.0.2 60 | CanShowSelectedItemsWhenRun 61 | 62 | CanShowWhenRun 63 | 64 | Category 65 | 66 | AMCategoryUtilities 67 | 68 | Class Name 69 | RunScriptAction 70 | InputUUID 71 | A47BD664-8677-4F8D-A162-359749F87A37 72 | Keywords 73 | 74 | Executar 75 | 76 | OutputUUID 77 | 130AC85A-14DB-462A-8C8C-FF503E943927 78 | UUID 79 | DD363640-C381-4484-869A-7D52E2C84021 80 | UnlocalizedApplications 81 | 82 | Automator 83 | 84 | arguments 85 | 86 | 0 87 | 88 | default value 89 | on run {input, parameters} 90 | 91 | (* Your script goes here *) 92 | 93 | return input 94 | end run 95 | name 96 | source 97 | required 98 | 0 99 | type 100 | 0 101 | uuid 102 | 0 103 | 104 | 105 | isViewVisible 106 | 107 | location 108 | 501.000000:496.000000 109 | nibPath 110 | /System/Library/Automator/Run AppleScript.action/Contents/Resources/Base.lproj/main.nib 111 | 112 | isViewVisible 113 | 114 | 115 | 116 | connectors 117 | 118 | workflowMetaData 119 | 120 | serviceApplicationBundleID 121 | com.apple.finder 122 | serviceApplicationPath 123 | /System/Library/CoreServices/Finder.app 124 | serviceInputTypeIdentifier 125 | com.apple.Automator.fileSystemObject.document 126 | serviceOutputTypeIdentifier 127 | com.apple.Automator.nothing 128 | serviceProcessesInput 129 | 0 130 | workflowTypeIdentifier 131 | com.apple.Automator.servicesMenu 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Reduzir 50% de Resolução 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Reduzir 50% de Resolução.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Reduzir 50% de Resolução.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 381 7 | AMApplicationVersion 8 | 2.4 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.cocoa.url 25 | 26 | 27 | AMActionVersion 28 | 1.1.1 29 | AMApplication 30 | 31 | Finder 32 | 33 | AMParameterProperties 34 | 35 | AMProvides 36 | 37 | Container 38 | List 39 | Types 40 | 41 | com.apple.cocoa.url 42 | 43 | 44 | AMRequiredResources 45 | 46 | ActionBundlePath 47 | /System/Library/Automator/Duplicate Finder Items.action 48 | ActionName 49 | Duplicar Itens do Finder 50 | ActionParameters 51 | 52 | BundleIdentifier 53 | com.apple.Automator.Duplicate_Finder_Items 54 | CFBundleVersion 55 | 1.1.1 56 | CanShowSelectedItemsWhenRun 57 | 58 | CanShowWhenRun 59 | 60 | Category 61 | 62 | AMCategoryFilesAndFolders 63 | 64 | Class Name 65 | AMDuplicateFinderItemsAction 66 | InputUUID 67 | 7988A3BA-48E8-4CB2-B16D-93A9CF0FE0F4 68 | Keywords 69 | 70 | Duplicate 71 | File 72 | Copy 73 | 74 | OutputUUID 75 | 05282237-424C-40E1-8303-ED3170C034DC 76 | UUID 77 | 521BCB64-F5E3-411A-A8EE-8028D898918E 78 | UnlocalizedApplications 79 | 80 | Finder 81 | 82 | arguments 83 | 84 | 85 | 86 | 87 | action 88 | 89 | AMAccepts 90 | 91 | Container 92 | List 93 | Optional 94 | 95 | Types 96 | 97 | com.apple.cocoa.path 98 | 99 | 100 | AMActionVersion 101 | 1.3.1 102 | AMApplication 103 | 104 | Pré-Visualização 105 | 106 | AMParameterProperties 107 | 108 | percentageValue 109 | 110 | scaleMethod 111 | 112 | scaleValue 113 | 114 | sizeValue 115 | 116 | 117 | AMProvides 118 | 119 | Container 120 | List 121 | Types 122 | 123 | com.apple.cocoa.path 124 | 125 | 126 | ActionBundlePath 127 | /System/Library/Automator/Scale Images.action 128 | ActionName 129 | Ajustar Imagens 130 | ActionParameters 131 | 132 | percentageValue 133 | 50 134 | scaleMethod 135 | 1 136 | scaleValue 137 | 0 138 | sizeValue 139 | 480 140 | 141 | BundleIdentifier 142 | com.apple.Automator.ScaleImage 143 | CFBundleVersion 144 | 1.3.1 145 | CanShowSelectedItemsWhenRun 146 | 147 | CanShowWhenRun 148 | 149 | Category 150 | 151 | AMCategoryPhotos 152 | 153 | Class Name 154 | AMScaleImagesAction 155 | InputUUID 156 | 2D05BB37-48DF-4FC6-8D69-B8EFF0F57A4B 157 | Keywords 158 | 159 | Imagem 160 | Foto 161 | Escala 162 | Alterar 163 | 164 | OutputUUID 165 | 57A1A2EC-CE43-4EF9-A8DA-6D8AFBBB9B0D 166 | UUID 167 | D57FAE19-3F92-486E-A75E-8CEE21CDD4B3 168 | UnlocalizedApplications 169 | 170 | Preview 171 | 172 | arguments 173 | 174 | 0 175 | 176 | default value 177 | 100 178 | name 179 | percentageValue 180 | required 181 | 0 182 | type 183 | 0 184 | uuid 185 | 0 186 | 187 | 1 188 | 189 | default value 190 | 0 191 | name 192 | scaleValue 193 | required 194 | 0 195 | type 196 | 0 197 | uuid 198 | 1 199 | 200 | 2 201 | 202 | default value 203 | 0 204 | name 205 | scaleMethod 206 | required 207 | 0 208 | type 209 | 0 210 | uuid 211 | 2 212 | 213 | 3 214 | 215 | default value 216 | 480 217 | name 218 | sizeValue 219 | required 220 | 0 221 | type 222 | 0 223 | uuid 224 | 3 225 | 226 | 227 | isViewVisible 228 | 229 | location 230 | 363.000000:673.000000 231 | nibPath 232 | /System/Library/Automator/Scale Images.action/Contents/Resources/Base.lproj/main.nib 233 | 234 | isViewVisible 235 | 236 | 237 | 238 | action 239 | 240 | AMAccepts 241 | 242 | Container 243 | List 244 | Optional 245 | 246 | Types 247 | 248 | com.apple.cocoa.path 249 | 250 | 251 | AMActionVersion 252 | 1.3.2 253 | AMApplication 254 | 255 | Finder 256 | 257 | AMParameterProperties 258 | 259 | caseIndicator 260 | 261 | dateFormat 262 | 263 | datePlacement 264 | 265 | dateSeparator 266 | 267 | dateToUse 268 | 269 | defaultName 270 | 271 | ignoreCase 272 | 273 | includeExtensions 274 | 275 | insertionPosition 276 | 277 | minimumCount 278 | 279 | nameDateSeparator 280 | 281 | nameSingleItem 282 | 283 | numberLocation 284 | 285 | numberSeparator 286 | 287 | renameItems 288 | 289 | renameType 290 | 291 | replaceWithText 292 | 293 | singleItemOption 294 | 295 | startingNumber 296 | 297 | textInput 298 | 299 | textToFind 300 | 301 | tokenizedValue 302 | 303 | @2x 304 | 305 | 306 | useLeadingZeros 307 | 308 | 309 | AMProvides 310 | 311 | Container 312 | List 313 | Types 314 | 315 | com.apple.cocoa.path 316 | 317 | 318 | ActionBundlePath 319 | /System/Library/Automator/Rename Finder Items.action 320 | ActionName 321 | Renomear Itens do Finder: Substituir Texto 322 | ActionParameters 323 | 324 | caseIndicator 325 | 0 326 | dateFormat 327 | 0 328 | datePlacement 329 | 0 330 | dateSeparator 331 | 0 332 | dateToUse 333 | 0 334 | defaultName 335 | 336 | ignoreCase 337 | 338 | includeExtensions 339 | 1 340 | insertionPosition 341 | 0 342 | minimumCount 343 | 2 344 | nameDateSeparator 345 | 0 346 | nameSingleItem 347 | 348 | numberLocation 349 | 0 350 | numberSeparator 351 | 0 352 | renameItems 353 | 0 354 | renameType 355 | 4 356 | replaceWithText 357 | 358 | singleItemOption 359 | 0 360 | startingNumber 361 | 1 362 | textInput 363 | 364 | textToFind 365 | @2x 366 | useLeadingZeros 367 | 368 | 369 | BundleIdentifier 370 | com.apple.Automator.AddNumbersToFinderNames 371 | CFBundleVersion 372 | 1.3.2 373 | CanShowSelectedItemsWhenRun 374 | 375 | CanShowWhenRun 376 | 377 | Category 378 | 379 | AMCategoryFilesAndFolders 380 | 381 | Class Name 382 | AMRenameFinderItemsAction 383 | InputUUID 384 | 78BC5061-9264-432B-AA9F-DD8C70729DC8 385 | Keywords 386 | 387 | Nome 388 | Arquivo 389 | Pasta 390 | Adicionar 391 | Número 392 | Alterar 393 | Maiúsculas/Minúsculas 394 | Renomear 395 | Data 396 | Hora 397 | Definir 398 | Texto 399 | Buscar 400 | Substituir 401 | Criar 402 | Sequencial 403 | 404 | OutputUUID 405 | E7FBAA1A-3070-45A6-A16D-8CEC412A4FB4 406 | UUID 407 | 6311CAD6-665B-4A0E-BB02-24028C3C339C 408 | UnlocalizedApplications 409 | 410 | Finder 411 | 412 | arguments 413 | 414 | 0 415 | 416 | default value 417 | 0 418 | name 419 | nameDateSeparator 420 | required 421 | 0 422 | type 423 | 0 424 | uuid 425 | 0 426 | 427 | 1 428 | 429 | default value 430 | 431 | name 432 | textToFind 433 | required 434 | 0 435 | type 436 | 0 437 | uuid 438 | 1 439 | 440 | 10 441 | 442 | default value 443 | 444 | name 445 | nameSingleItem 446 | required 447 | 0 448 | type 449 | 0 450 | uuid 451 | 10 452 | 453 | 11 454 | 455 | default value 456 | 457 | name 458 | ignoreCase 459 | required 460 | 0 461 | type 462 | 0 463 | uuid 464 | 11 465 | 466 | 12 467 | 468 | default value 469 | 470 | name 471 | textInput 472 | required 473 | 0 474 | type 475 | 0 476 | uuid 477 | 12 478 | 479 | 13 480 | 481 | default value 482 | 0 483 | name 484 | dateToUse 485 | required 486 | 0 487 | type 488 | 0 489 | uuid 490 | 13 491 | 492 | 14 493 | 494 | default value 495 | 0 496 | name 497 | includeExtensions 498 | required 499 | 0 500 | type 501 | 0 502 | uuid 503 | 14 504 | 505 | 15 506 | 507 | default value 508 | 509 | name 510 | replaceWithText 511 | required 512 | 0 513 | type 514 | 0 515 | uuid 516 | 15 517 | 518 | 16 519 | 520 | default value 521 | 0 522 | name 523 | renameItems 524 | required 525 | 0 526 | type 527 | 0 528 | uuid 529 | 16 530 | 531 | 17 532 | 533 | default value 534 | 535 | name 536 | defaultName 537 | required 538 | 0 539 | type 540 | 0 541 | uuid 542 | 17 543 | 544 | 18 545 | 546 | default value 547 | 1 548 | name 549 | startingNumber 550 | required 551 | 0 552 | type 553 | 0 554 | uuid 555 | 18 556 | 557 | 19 558 | 559 | default value 560 | 0 561 | name 562 | numberSeparator 563 | required 564 | 0 565 | type 566 | 0 567 | uuid 568 | 19 569 | 570 | 2 571 | 572 | default value 573 | 0 574 | name 575 | datePlacement 576 | required 577 | 0 578 | type 579 | 0 580 | uuid 581 | 2 582 | 583 | 20 584 | 585 | default value 586 | 0 587 | name 588 | caseIndicator 589 | required 590 | 0 591 | type 592 | 0 593 | uuid 594 | 20 595 | 596 | 21 597 | 598 | default value 599 | 0 600 | name 601 | dateFormat 602 | required 603 | 0 604 | type 605 | 0 606 | uuid 607 | 21 608 | 609 | 3 610 | 611 | default value 612 | 0 613 | name 614 | insertionPosition 615 | required 616 | 0 617 | type 618 | 0 619 | uuid 620 | 3 621 | 622 | 4 623 | 624 | default value 625 | 0 626 | name 627 | dateSeparator 628 | required 629 | 0 630 | type 631 | 0 632 | uuid 633 | 4 634 | 635 | 5 636 | 637 | default value 638 | 2 639 | name 640 | minimumCount 641 | required 642 | 0 643 | type 644 | 0 645 | uuid 646 | 5 647 | 648 | 6 649 | 650 | default value 651 | 0 652 | name 653 | numberLocation 654 | required 655 | 0 656 | type 657 | 0 658 | uuid 659 | 6 660 | 661 | 7 662 | 663 | default value 664 | 665 | name 666 | useLeadingZeros 667 | required 668 | 0 669 | type 670 | 0 671 | uuid 672 | 7 673 | 674 | 8 675 | 676 | default value 677 | 0 678 | name 679 | singleItemOption 680 | required 681 | 0 682 | type 683 | 0 684 | uuid 685 | 8 686 | 687 | 9 688 | 689 | default value 690 | 0 691 | name 692 | renameType 693 | required 694 | 0 695 | type 696 | 0 697 | uuid 698 | 9 699 | 700 | 701 | conversionLabel 702 | 0 703 | isViewVisible 704 | 705 | location 706 | 363.000000:570.000000 707 | nibPath 708 | /System/Library/Automator/Rename Finder Items.action/Contents/Resources/pt.lproj/main.nib 709 | 710 | isViewVisible 711 | 712 | 713 | 714 | action 715 | 716 | AMAccepts 717 | 718 | Container 719 | List 720 | Optional 721 | 722 | Types 723 | 724 | com.apple.cocoa.path 725 | 726 | 727 | AMActionVersion 728 | 1.3.2 729 | AMApplication 730 | 731 | Finder 732 | 733 | AMParameterProperties 734 | 735 | caseIndicator 736 | 737 | dateFormat 738 | 739 | datePlacement 740 | 741 | dateSeparator 742 | 743 | dateToUse 744 | 745 | defaultName 746 | 747 | ignoreCase 748 | 749 | includeExtensions 750 | 751 | insertionPosition 752 | 753 | minimumCount 754 | 755 | nameDateSeparator 756 | 757 | nameSingleItem 758 | 759 | numberLocation 760 | 761 | numberSeparator 762 | 763 | renameItems 764 | 765 | renameType 766 | 767 | replaceWithText 768 | 769 | singleItemOption 770 | 771 | startingNumber 772 | 773 | textInput 774 | 775 | textToFind 776 | 777 | tokenizedValue 778 | 779 | cópia de 780 | 781 | 782 | useLeadingZeros 783 | 784 | 785 | AMProvides 786 | 787 | Container 788 | List 789 | Types 790 | 791 | com.apple.cocoa.path 792 | 793 | 794 | ActionBundlePath 795 | /System/Library/Automator/Rename Finder Items.action 796 | ActionName 797 | Renomear Itens do Finder: Substituir Texto 798 | ActionParameters 799 | 800 | caseIndicator 801 | 0 802 | dateFormat 803 | 0 804 | datePlacement 805 | 0 806 | dateSeparator 807 | 0 808 | dateToUse 809 | 0 810 | defaultName 811 | 812 | ignoreCase 813 | 814 | includeExtensions 815 | 0 816 | insertionPosition 817 | 0 818 | minimumCount 819 | 2 820 | nameDateSeparator 821 | 0 822 | nameSingleItem 823 | 824 | numberLocation 825 | 0 826 | numberSeparator 827 | 0 828 | renameItems 829 | 0 830 | renameType 831 | 4 832 | replaceWithText 833 | 834 | singleItemOption 835 | 0 836 | startingNumber 837 | 1 838 | textInput 839 | 840 | textToFind 841 | cópia de 842 | useLeadingZeros 843 | 844 | 845 | BundleIdentifier 846 | com.apple.Automator.AddNumbersToFinderNames 847 | CFBundleVersion 848 | 1.3.2 849 | CanShowSelectedItemsWhenRun 850 | 851 | CanShowWhenRun 852 | 853 | Category 854 | 855 | AMCategoryFilesAndFolders 856 | 857 | Class Name 858 | AMRenameFinderItemsAction 859 | InputUUID 860 | EC444619-BC1E-4283-997D-97228FA786FF 861 | Keywords 862 | 863 | Nome 864 | Arquivo 865 | Pasta 866 | Adicionar 867 | Número 868 | Alterar 869 | Maiúsculas/Minúsculas 870 | Renomear 871 | Data 872 | Hora 873 | Definir 874 | Texto 875 | Buscar 876 | Substituir 877 | Criar 878 | Sequencial 879 | 880 | OutputUUID 881 | 843AAF71-0AFF-499E-BFD1-8E46705C8E17 882 | UUID 883 | 663449B6-07C2-41C0-8EFF-A1E79011F99D 884 | UnlocalizedApplications 885 | 886 | Finder 887 | 888 | arguments 889 | 890 | 0 891 | 892 | default value 893 | 0 894 | name 895 | nameDateSeparator 896 | required 897 | 0 898 | type 899 | 0 900 | uuid 901 | 0 902 | 903 | 1 904 | 905 | default value 906 | 907 | name 908 | textToFind 909 | required 910 | 0 911 | type 912 | 0 913 | uuid 914 | 1 915 | 916 | 10 917 | 918 | default value 919 | 920 | name 921 | nameSingleItem 922 | required 923 | 0 924 | type 925 | 0 926 | uuid 927 | 10 928 | 929 | 11 930 | 931 | default value 932 | 933 | name 934 | ignoreCase 935 | required 936 | 0 937 | type 938 | 0 939 | uuid 940 | 11 941 | 942 | 12 943 | 944 | default value 945 | 946 | name 947 | textInput 948 | required 949 | 0 950 | type 951 | 0 952 | uuid 953 | 12 954 | 955 | 13 956 | 957 | default value 958 | 0 959 | name 960 | dateToUse 961 | required 962 | 0 963 | type 964 | 0 965 | uuid 966 | 13 967 | 968 | 14 969 | 970 | default value 971 | 0 972 | name 973 | includeExtensions 974 | required 975 | 0 976 | type 977 | 0 978 | uuid 979 | 14 980 | 981 | 15 982 | 983 | default value 984 | 985 | name 986 | replaceWithText 987 | required 988 | 0 989 | type 990 | 0 991 | uuid 992 | 15 993 | 994 | 16 995 | 996 | default value 997 | 0 998 | name 999 | renameItems 1000 | required 1001 | 0 1002 | type 1003 | 0 1004 | uuid 1005 | 16 1006 | 1007 | 17 1008 | 1009 | default value 1010 | 1011 | name 1012 | defaultName 1013 | required 1014 | 0 1015 | type 1016 | 0 1017 | uuid 1018 | 17 1019 | 1020 | 18 1021 | 1022 | default value 1023 | 1 1024 | name 1025 | startingNumber 1026 | required 1027 | 0 1028 | type 1029 | 0 1030 | uuid 1031 | 18 1032 | 1033 | 19 1034 | 1035 | default value 1036 | 0 1037 | name 1038 | numberSeparator 1039 | required 1040 | 0 1041 | type 1042 | 0 1043 | uuid 1044 | 19 1045 | 1046 | 2 1047 | 1048 | default value 1049 | 0 1050 | name 1051 | datePlacement 1052 | required 1053 | 0 1054 | type 1055 | 0 1056 | uuid 1057 | 2 1058 | 1059 | 20 1060 | 1061 | default value 1062 | 0 1063 | name 1064 | caseIndicator 1065 | required 1066 | 0 1067 | type 1068 | 0 1069 | uuid 1070 | 20 1071 | 1072 | 21 1073 | 1074 | default value 1075 | 0 1076 | name 1077 | dateFormat 1078 | required 1079 | 0 1080 | type 1081 | 0 1082 | uuid 1083 | 21 1084 | 1085 | 3 1086 | 1087 | default value 1088 | 0 1089 | name 1090 | insertionPosition 1091 | required 1092 | 0 1093 | type 1094 | 0 1095 | uuid 1096 | 3 1097 | 1098 | 4 1099 | 1100 | default value 1101 | 0 1102 | name 1103 | dateSeparator 1104 | required 1105 | 0 1106 | type 1107 | 0 1108 | uuid 1109 | 4 1110 | 1111 | 5 1112 | 1113 | default value 1114 | 2 1115 | name 1116 | minimumCount 1117 | required 1118 | 0 1119 | type 1120 | 0 1121 | uuid 1122 | 5 1123 | 1124 | 6 1125 | 1126 | default value 1127 | 0 1128 | name 1129 | numberLocation 1130 | required 1131 | 0 1132 | type 1133 | 0 1134 | uuid 1135 | 6 1136 | 1137 | 7 1138 | 1139 | default value 1140 | 1141 | name 1142 | useLeadingZeros 1143 | required 1144 | 0 1145 | type 1146 | 0 1147 | uuid 1148 | 7 1149 | 1150 | 8 1151 | 1152 | default value 1153 | 0 1154 | name 1155 | singleItemOption 1156 | required 1157 | 0 1158 | type 1159 | 0 1160 | uuid 1161 | 8 1162 | 1163 | 9 1164 | 1165 | default value 1166 | 0 1167 | name 1168 | renameType 1169 | required 1170 | 0 1171 | type 1172 | 0 1173 | uuid 1174 | 9 1175 | 1176 | 1177 | conversionLabel 1178 | 0 1179 | isViewVisible 1180 | 1181 | location 1182 | 363.000000:351.000000 1183 | nibPath 1184 | /System/Library/Automator/Rename Finder Items.action/Contents/Resources/pt.lproj/main.nib 1185 | 1186 | isViewVisible 1187 | 1188 | 1189 | 1190 | connectors 1191 | 1192 | 10DFCFD3-46DE-4EA8-8093-27B76F5DA203 1193 | 1194 | from 1195 | 521BCB64-F5E3-411A-A8EE-8028D898918E - 521BCB64-F5E3-411A-A8EE-8028D898918E 1196 | to 1197 | D57FAE19-3F92-486E-A75E-8CEE21CDD4B3 - D57FAE19-3F92-486E-A75E-8CEE21CDD4B3 1198 | 1199 | 360023D8-02F9-4F12-AB94-5C916AFAAE18 1200 | 1201 | from 1202 | 6311CAD6-665B-4A0E-BB02-24028C3C339C - 6311CAD6-665B-4A0E-BB02-24028C3C339C 1203 | to 1204 | 663449B6-07C2-41C0-8EFF-A1E79011F99D - 663449B6-07C2-41C0-8EFF-A1E79011F99D 1205 | 1206 | A66818F7-10A9-4DAF-B257-E4A5CF4B9D84 1207 | 1208 | from 1209 | D57FAE19-3F92-486E-A75E-8CEE21CDD4B3 - D57FAE19-3F92-486E-A75E-8CEE21CDD4B3 1210 | to 1211 | 6311CAD6-665B-4A0E-BB02-24028C3C339C - 6311CAD6-665B-4A0E-BB02-24028C3C339C 1212 | 1213 | 1214 | workflowMetaData 1215 | 1216 | serviceApplicationBundleID 1217 | com.apple.finder 1218 | serviceApplicationPath 1219 | /System/Library/CoreServices/Finder.app 1220 | serviceInputTypeIdentifier 1221 | com.apple.Automator.fileSystemObject.image 1222 | serviceOutputTypeIdentifier 1223 | com.apple.Automator.nothing 1224 | serviceProcessesInput 1225 | 0 1226 | workflowTypeIdentifier 1227 | com.apple.Automator.servicesMenu 1228 | 1229 | 1230 | 1231 | -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Renomear em sequência 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.item 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Renomear em sequência.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/services/Renomear em sequência.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 381 7 | AMApplicationVersion 8 | 2.4 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | * 25 | 26 | 27 | AMActionVersion 28 | v.1.0.2 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | variableUUID 36 | 37 | isPathPopUp 38 | 39 | selectedVariableUUID 40 | CB689D4B-C9F9-4A89-AA42-234C79912D12 41 | 42 | 43 | AMProvides 44 | 45 | Container 46 | List 47 | Types 48 | 49 | * 50 | 51 | 52 | AMRequiredResources 53 | 54 | ActionBundlePath 55 | /System/Library/Automator/Set Value of Variable.action 56 | ActionName 57 | Ajustar Valor da Variável 58 | ActionParameters 59 | 60 | variableUUID 61 | CB689D4B-C9F9-4A89-AA42-234C79912D12 62 | 63 | BundleIdentifier 64 | com.apple.Automator.Set_Value_of_Variable 65 | CFBundleVersion 66 | 1.0.2 67 | CanShowSelectedItemsWhenRun 68 | 69 | CanShowWhenRun 70 | 71 | Category 72 | 73 | AMCategoryUtilities 74 | 75 | Class Name 76 | Set_Value_of_Variable 77 | InputUUID 78 | E2AF2246-49DC-4BE2-8453-CF708EE9A0CF 79 | Keywords 80 | 81 | Variável 82 | vinculação 83 | Entrada 84 | Saída 85 | Armazenamento 86 | 87 | OutputUUID 88 | 3BD73445-3D57-4902-AA0F-E7E6CDCB24DA 89 | UUID 90 | 369EDD46-8CDB-4CC5-812D-B6ADEDEC46AC 91 | UnlocalizedApplications 92 | 93 | Automator 94 | 95 | arguments 96 | 97 | 0 98 | 99 | default value 100 | 101 | name 102 | variableUUID 103 | required 104 | 0 105 | type 106 | 0 107 | uuid 108 | 0 109 | 110 | 111 | isViewVisible 112 | 113 | location 114 | 571.000000:791.000000 115 | nibPath 116 | /System/Library/Automator/Set Value of Variable.action/Contents/Resources/Base.lproj/main.nib 117 | 118 | isViewVisible 119 | 120 | 121 | 122 | action 123 | 124 | AMAccepts 125 | 126 | Container 127 | List 128 | Optional 129 | 130 | Types 131 | 132 | com.apple.cocoa.string 133 | 134 | 135 | AMActionVersion 136 | 1.1.1 137 | AMApplication 138 | 139 | Automator 140 | Editor de Texto 141 | 142 | AMParameterProperties 143 | 144 | buttonAffirmative 145 | 146 | buttonNegative 147 | 148 | defaultAnswer 149 | 150 | tokenizedValue 151 | 152 | Arquivo 153 | 154 | 155 | defaultMessage 156 | 157 | tokenizedValue 158 | 159 | Nome fixo dos arquivos 160 | 161 | 162 | requireInput 163 | 164 | 165 | AMProvides 166 | 167 | Container 168 | List 169 | Types 170 | 171 | com.apple.cocoa.string 172 | 173 | 174 | ActionBundlePath 175 | /System/Library/Automator/Ask for Text.action 176 | ActionName 177 | Perguntar por Texto 178 | ActionParameters 179 | 180 | buttonAffirmative 181 | Continuar 182 | buttonNegative 183 | Cancelar 184 | defaultAnswer 185 | Arquivo 186 | defaultMessage 187 | Nome fixo dos arquivos 188 | requireInput 189 | 190 | 191 | BundleIdentifier 192 | com.apple.Automator.TextInputDialog 193 | CFBundleVersion 194 | 1.1.1 195 | CanShowSelectedItemsWhenRun 196 | 197 | CanShowWhenRun 198 | 199 | Category 200 | 201 | AMCategoryText 202 | 203 | Class Name 204 | AMAskForTextAction 205 | IgnoresInput 206 | 207 | InputUUID 208 | 806E3A76-470A-449C-B6D7-844FB2D02C54 209 | Keywords 210 | 211 | Texto 212 | Perguntar 213 | Avisar 214 | 215 | OutputUUID 216 | 01116985-E793-46FF-838D-A723BF4505F2 217 | UUID 218 | 13E712D9-3D0E-4373-9763-EC8AD1F00EEE 219 | UnlocalizedApplications 220 | 221 | Automator 222 | TextEdit 223 | 224 | arguments 225 | 226 | 0 227 | 228 | default value 229 | 230 | name 231 | defaultAnswer 232 | required 233 | 0 234 | type 235 | 0 236 | uuid 237 | 0 238 | 239 | 1 240 | 241 | default value 242 | OK 243 | name 244 | buttonAffirmative 245 | required 246 | 0 247 | type 248 | 0 249 | uuid 250 | 1 251 | 252 | 2 253 | 254 | default value 255 | 256 | name 257 | defaultMessage 258 | required 259 | 0 260 | type 261 | 0 262 | uuid 263 | 2 264 | 265 | 3 266 | 267 | default value 268 | Cancelar 269 | name 270 | buttonNegative 271 | required 272 | 0 273 | type 274 | 0 275 | uuid 276 | 3 277 | 278 | 4 279 | 280 | default value 281 | 282 | name 283 | requireInput 284 | required 285 | 0 286 | type 287 | 0 288 | uuid 289 | 4 290 | 291 | 292 | isViewVisible 293 | 294 | location 295 | 559.000000:687.000000 296 | nibPath 297 | /System/Library/Automator/Ask for Text.action/Contents/Resources/pt.lproj/main.nib 298 | 299 | isViewVisible 300 | 301 | 302 | 303 | action 304 | 305 | AMAccepts 306 | 307 | Container 308 | List 309 | Optional 310 | 311 | Types 312 | 313 | * 314 | 315 | 316 | AMActionVersion 317 | v.1.0.2 318 | AMApplication 319 | 320 | Automator 321 | 322 | AMParameterProperties 323 | 324 | variableUUID 325 | 326 | isPathPopUp 327 | 328 | selectedVariableUUID 329 | E80E1AA1-964F-48B4-BB08-BF682A2ED02A 330 | 331 | 332 | AMProvides 333 | 334 | Container 335 | List 336 | Types 337 | 338 | * 339 | 340 | 341 | AMRequiredResources 342 | 343 | ActionBundlePath 344 | /System/Library/Automator/Set Value of Variable.action 345 | ActionName 346 | Ajustar Valor da Variável 347 | ActionParameters 348 | 349 | variableUUID 350 | E80E1AA1-964F-48B4-BB08-BF682A2ED02A 351 | 352 | BundleIdentifier 353 | com.apple.Automator.Set_Value_of_Variable 354 | CFBundleVersion 355 | 1.0.2 356 | CanShowSelectedItemsWhenRun 357 | 358 | CanShowWhenRun 359 | 360 | Category 361 | 362 | AMCategoryUtilities 363 | 364 | Class Name 365 | Set_Value_of_Variable 366 | InputUUID 367 | 4D6CCDB7-5D8F-4C21-965C-7117D42740DC 368 | Keywords 369 | 370 | Variável 371 | vinculação 372 | Entrada 373 | Saída 374 | Armazenamento 375 | 376 | OutputUUID 377 | 2F8C79AA-D89A-4B49-827E-E4812934E763 378 | UUID 379 | 70AD707B-A949-43CB-B0D0-B23E795A38AD 380 | UnlocalizedApplications 381 | 382 | Automator 383 | 384 | arguments 385 | 386 | 0 387 | 388 | default value 389 | 390 | name 391 | variableUUID 392 | required 393 | 0 394 | type 395 | 0 396 | uuid 397 | 0 398 | 399 | 400 | isViewVisible 401 | 402 | location 403 | 571.000000:505.000000 404 | nibPath 405 | /System/Library/Automator/Set Value of Variable.action/Contents/Resources/Base.lproj/main.nib 406 | 407 | isViewVisible 408 | 409 | 410 | 411 | action 412 | 413 | AMAccepts 414 | 415 | Container 416 | List 417 | Optional 418 | 419 | Types 420 | 421 | * 422 | 423 | 424 | AMActionVersion 425 | v.1.0.2 426 | AMApplication 427 | 428 | Automator 429 | 430 | AMParameterProperties 431 | 432 | variableUUID 433 | 434 | isPathPopUp 435 | 436 | selectedVariableUUID 437 | CB689D4B-C9F9-4A89-AA42-234C79912D12 438 | 439 | 440 | AMProvides 441 | 442 | Container 443 | List 444 | Types 445 | 446 | * 447 | 448 | 449 | AMRequiredResources 450 | 451 | ActionBundlePath 452 | /System/Library/Automator/Get Value of Variable.action 453 | ActionName 454 | Obter o Valor da Variável 455 | ActionParameters 456 | 457 | variableUUID 458 | CB689D4B-C9F9-4A89-AA42-234C79912D12 459 | 460 | BundleIdentifier 461 | com.apple.Automator.Get_Value_of_Variable 462 | CFBundleVersion 463 | 1.0.2 464 | CanShowSelectedItemsWhenRun 465 | 466 | CanShowWhenRun 467 | 468 | Category 469 | 470 | AMCategoryUtilities 471 | 472 | Class Name 473 | Get_Value_of_Variable 474 | IgnoresInput 475 | 476 | InputUUID 477 | BD6B51D1-BE31-443A-B48A-15432420C606 478 | Keywords 479 | 480 | Variável 481 | vinculação 482 | Entrada 483 | Saída 484 | Armazenamento 485 | 486 | OutputUUID 487 | 10ADB621-C6CC-4C06-9325-B7845443B881 488 | UUID 489 | 11D9BFAB-9548-49DF-AC98-0F8054CB941A 490 | UnlocalizedApplications 491 | 492 | Automator 493 | 494 | arguments 495 | 496 | 0 497 | 498 | default value 499 | 500 | name 501 | variableUUID 502 | required 503 | 0 504 | type 505 | 0 506 | uuid 507 | 0 508 | 509 | 510 | isViewVisible 511 | 512 | location 513 | 559.000000:401.000000 514 | nibPath 515 | /System/Library/Automator/Get Value of Variable.action/Contents/Resources/Base.lproj/main.nib 516 | 517 | isViewVisible 518 | 519 | 520 | 521 | action 522 | 523 | AMAccepts 524 | 525 | Container 526 | List 527 | Optional 528 | 529 | Types 530 | 531 | com.apple.cocoa.path 532 | 533 | 534 | AMActionVersion 535 | v.1.3.2 536 | AMApplication 537 | 538 | Finder 539 | 540 | AMParameterProperties 541 | 542 | caseIndicator 543 | 544 | dateFormat 545 | 546 | datePlacement 547 | 548 | dateSeparator 549 | 550 | dateToUse 551 | 552 | defaultName 553 | 554 | tokenizedValue 555 | 556 | $(E80E1AA1-964F-48B4-BB08-BF682A2ED02A) 557 | 558 | 559 | ignoreCase 560 | 561 | includeExtensions 562 | 563 | insertionPosition 564 | 565 | minimumCount 566 | 567 | nameDateSeparator 568 | 569 | nameSingleItem 570 | 571 | numberLocation 572 | 573 | numberSeparator 574 | 575 | renameItems 576 | 577 | renameType 578 | 579 | replaceWithText 580 | 581 | singleItemOption 582 | 583 | startingNumber 584 | 585 | textInput 586 | 587 | textToFind 588 | 589 | useLeadingZeros 590 | 591 | 592 | AMProvides 593 | 594 | Container 595 | List 596 | Types 597 | 598 | com.apple.cocoa.path 599 | 600 | 601 | ActionBundlePath 602 | /System/Library/Automator/Rename Finder Items.action 603 | ActionName 604 | Renomear Itens do Finder: Tornar Sequencial 605 | ActionParameters 606 | 607 | caseIndicator 608 | 0 609 | dateFormat 610 | 0 611 | datePlacement 612 | 0 613 | dateSeparator 614 | 0 615 | dateToUse 616 | 0 617 | defaultName 618 | $(E80E1AA1-964F-48B4-BB08-BF682A2ED02A) 619 | ignoreCase 620 | 621 | includeExtensions 622 | 0 623 | insertionPosition 624 | 0 625 | minimumCount 626 | 2 627 | nameDateSeparator 628 | 0 629 | nameSingleItem 630 | 631 | numberLocation 632 | 0 633 | numberSeparator 634 | 0 635 | renameItems 636 | 1 637 | renameType 638 | 3 639 | replaceWithText 640 | 641 | singleItemOption 642 | 0 643 | startingNumber 644 | 1 645 | textInput 646 | 647 | textToFind 648 | 649 | useLeadingZeros 650 | 651 | 652 | BundleIdentifier 653 | com.apple.Automator.AddNumbersToFinderNames 654 | CFBundleVersion 655 | 1.3.2 656 | CanShowSelectedItemsWhenRun 657 | 658 | CanShowWhenRun 659 | 660 | Category 661 | 662 | AMCategoryFilesAndFolders 663 | 664 | Class Name 665 | AMRenameFinderItemsAction 666 | InputUUID 667 | 4A3AC06B-358A-444C-AED1-7904369FAC5C 668 | Keywords 669 | 670 | Nome 671 | Arquivo 672 | Pasta 673 | Adicionar 674 | Número 675 | Alterar 676 | Maiúsculas/Minúsculas 677 | Renomear 678 | Data 679 | Hora 680 | Definir 681 | Texto 682 | Buscar 683 | Substituir 684 | Criar 685 | Sequencial 686 | 687 | OutputUUID 688 | 6A3A1E0B-D868-42D8-9BC7-90423FF0CFC9 689 | UUID 690 | 66538450-2520-4035-8566-6F191CAEF8F4 691 | UnlocalizedApplications 692 | 693 | Finder 694 | 695 | arguments 696 | 697 | 0 698 | 699 | default value 700 | 0 701 | name 702 | nameDateSeparator 703 | required 704 | 0 705 | type 706 | 0 707 | uuid 708 | 0 709 | 710 | 1 711 | 712 | default value 713 | 714 | name 715 | textToFind 716 | required 717 | 0 718 | type 719 | 0 720 | uuid 721 | 1 722 | 723 | 10 724 | 725 | default value 726 | 727 | name 728 | nameSingleItem 729 | required 730 | 0 731 | type 732 | 0 733 | uuid 734 | 10 735 | 736 | 11 737 | 738 | default value 739 | 740 | name 741 | ignoreCase 742 | required 743 | 0 744 | type 745 | 0 746 | uuid 747 | 11 748 | 749 | 12 750 | 751 | default value 752 | 753 | name 754 | textInput 755 | required 756 | 0 757 | type 758 | 0 759 | uuid 760 | 12 761 | 762 | 13 763 | 764 | default value 765 | 0 766 | name 767 | dateToUse 768 | required 769 | 0 770 | type 771 | 0 772 | uuid 773 | 13 774 | 775 | 14 776 | 777 | default value 778 | 0 779 | name 780 | includeExtensions 781 | required 782 | 0 783 | type 784 | 0 785 | uuid 786 | 14 787 | 788 | 15 789 | 790 | default value 791 | 792 | name 793 | replaceWithText 794 | required 795 | 0 796 | type 797 | 0 798 | uuid 799 | 15 800 | 801 | 16 802 | 803 | default value 804 | 0 805 | name 806 | renameItems 807 | required 808 | 0 809 | type 810 | 0 811 | uuid 812 | 16 813 | 814 | 17 815 | 816 | default value 817 | 818 | name 819 | defaultName 820 | required 821 | 0 822 | type 823 | 0 824 | uuid 825 | 17 826 | 827 | 18 828 | 829 | default value 830 | 1 831 | name 832 | startingNumber 833 | required 834 | 0 835 | type 836 | 0 837 | uuid 838 | 18 839 | 840 | 19 841 | 842 | default value 843 | 0 844 | name 845 | numberSeparator 846 | required 847 | 0 848 | type 849 | 0 850 | uuid 851 | 19 852 | 853 | 2 854 | 855 | default value 856 | 0 857 | name 858 | datePlacement 859 | required 860 | 0 861 | type 862 | 0 863 | uuid 864 | 2 865 | 866 | 20 867 | 868 | default value 869 | 0 870 | name 871 | caseIndicator 872 | required 873 | 0 874 | type 875 | 0 876 | uuid 877 | 20 878 | 879 | 21 880 | 881 | default value 882 | 0 883 | name 884 | dateFormat 885 | required 886 | 0 887 | type 888 | 0 889 | uuid 890 | 21 891 | 892 | 3 893 | 894 | default value 895 | 0 896 | name 897 | insertionPosition 898 | required 899 | 0 900 | type 901 | 0 902 | uuid 903 | 3 904 | 905 | 4 906 | 907 | default value 908 | 0 909 | name 910 | dateSeparator 911 | required 912 | 0 913 | type 914 | 0 915 | uuid 916 | 4 917 | 918 | 5 919 | 920 | default value 921 | 2 922 | name 923 | minimumCount 924 | required 925 | 0 926 | type 927 | 0 928 | uuid 929 | 5 930 | 931 | 6 932 | 933 | default value 934 | 0 935 | name 936 | numberLocation 937 | required 938 | 0 939 | type 940 | 0 941 | uuid 942 | 6 943 | 944 | 7 945 | 946 | default value 947 | 948 | name 949 | useLeadingZeros 950 | required 951 | 0 952 | type 953 | 0 954 | uuid 955 | 7 956 | 957 | 8 958 | 959 | default value 960 | 0 961 | name 962 | singleItemOption 963 | required 964 | 0 965 | type 966 | 0 967 | uuid 968 | 8 969 | 970 | 9 971 | 972 | default value 973 | 0 974 | name 975 | renameType 976 | required 977 | 0 978 | type 979 | 0 980 | uuid 981 | 9 982 | 983 | 984 | isViewVisible 985 | 986 | location 987 | 559.000000:298.000000 988 | nibPath 989 | /System/Library/Automator/Rename Finder Items.action/Contents/Resources/pt.lproj/main.nib 990 | 991 | isViewVisible 992 | 993 | 994 | 995 | connectors 996 | 997 | 046E4E85-0F36-4927-89C4-E83A35223CA7 998 | 999 | from 1000 | 369EDD46-8CDB-4CC5-812D-B6ADEDEC46AC - 369EDD46-8CDB-4CC5-812D-B6ADEDEC46AC 1001 | to 1002 | 13E712D9-3D0E-4373-9763-EC8AD1F00EEE - 13E712D9-3D0E-4373-9763-EC8AD1F00EEE 1003 | 1004 | 2C80DA5F-1A5F-45FB-9B15-E52E57104123 1005 | 1006 | from 1007 | 70AD707B-A949-43CB-B0D0-B23E795A38AD - 70AD707B-A949-43CB-B0D0-B23E795A38AD 1008 | to 1009 | 11D9BFAB-9548-49DF-AC98-0F8054CB941A - 11D9BFAB-9548-49DF-AC98-0F8054CB941A 1010 | 1011 | 4DF614E4-3C4E-4ED5-9FC1-67AB6964409E 1012 | 1013 | from 1014 | 13E712D9-3D0E-4373-9763-EC8AD1F00EEE - 13E712D9-3D0E-4373-9763-EC8AD1F00EEE 1015 | to 1016 | 70AD707B-A949-43CB-B0D0-B23E795A38AD - 70AD707B-A949-43CB-B0D0-B23E795A38AD 1017 | 1018 | A9215B78-B497-4B82-BD36-09F6CDE389B9 1019 | 1020 | from 1021 | 11D9BFAB-9548-49DF-AC98-0F8054CB941A - 11D9BFAB-9548-49DF-AC98-0F8054CB941A 1022 | to 1023 | 66538450-2520-4035-8566-6F191CAEF8F4 - 66538450-2520-4035-8566-6F191CAEF8F4 1024 | 1025 | 1026 | variables 1027 | 1028 | 1029 | UUID 1030 | CB689D4B-C9F9-4A89-AA42-234C79912D12 1031 | identifier 1032 | com.apple.Automator.Variable.Storage 1033 | name 1034 | InputFiles 1035 | 1036 | 1037 | UUID 1038 | E80E1AA1-964F-48B4-BB08-BF682A2ED02A 1039 | identifier 1040 | com.apple.Automator.Variable.Storage 1041 | name 1042 | PrefixName 1043 | 1044 | 1045 | workflowMetaData 1046 | 1047 | serviceApplicationBundleID 1048 | com.apple.finder 1049 | serviceApplicationPath 1050 | /System/Library/CoreServices/Finder.app 1051 | serviceInputTypeIdentifier 1052 | com.apple.Automator.fileSystemObject 1053 | serviceOutputTypeIdentifier 1054 | com.apple.Automator.nothing 1055 | serviceProcessesInput 1056 | 0 1057 | workflowTypeIdentifier 1058 | com.apple.Automator.servicesMenu 1059 | 1060 | 1061 | 1062 | -------------------------------------------------------------------------------- /workflows/services/Ícones para Apps.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSMenuItem 9 | 10 | default 11 | Ícones para Apps 12 | 13 | NSMessage 14 | runWorkflowAsService 15 | NSRequiredContext 16 | 17 | NSApplicationIdentifier 18 | com.apple.finder 19 | 20 | NSSendFileTypes 21 | 22 | public.image 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /workflows/services/Ícones para Apps.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/services/Ícones para Apps.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleName 6 | start-screen-saver 7 | 8 | 9 | -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronflima/MacOSScriptsToolset/a3800c1464402990a2dccc294c1a9cc8ecc49800/workflows/start-screen-saver.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /workflows/start-screen-saver.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 428 7 | AMApplicationVersion 8 | 2.7 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | 25 | AMActionVersion 26 | 1.0.2 27 | AMApplication 28 | 29 | Sistema 30 | 31 | AMParameterProperties 32 | 33 | AMProvides 34 | 35 | Container 36 | List 37 | Types 38 | 39 | 40 | AMRequiredResources 41 | 42 | ActionBundlePath 43 | /System/Library/Automator/Start Screen Saver.action 44 | ActionName 45 | Iniciar o Protetor de Tela 46 | ActionParameters 47 | 48 | BundleIdentifier 49 | com.apple.Automator.StartScreenSaver 50 | CFBundleVersion 51 | 1.0.2 52 | CanShowSelectedItemsWhenRun 53 | 54 | CanShowWhenRun 55 | 56 | Category 57 | 58 | AMCategoryUtilities 59 | 60 | Class Name 61 | AMStartScreenSaverAction 62 | InputUUID 63 | 3CD41BD3-50F8-453F-9D43-610674DC3B95 64 | Keywords 65 | 66 | OutputUUID 67 | 061BD50B-D7D6-46D9-8C58-F3E21870AC78 68 | UUID 69 | 000E79C3-2B17-47DC-8127-9BC9D6C70AF6 70 | UnlocalizedApplications 71 | 72 | System 73 | 74 | arguments 75 | 76 | conversionLabel 77 | 0 78 | 79 | 80 | 81 | connectors 82 | 83 | workflowMetaData 84 | 85 | workflowTypeIdentifier 86 | com.apple.Automator.workflow 87 | 88 | 89 | 90 | --------------------------------------------------------------------------------