├── .eslintrc.json ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── apps-quit-all.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.swift ├── apps-restart-current.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── cleanshot-x-all-in-one.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── clear-notifications.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── dictionary-search.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.swift ├── files-chmodx.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── finder-browse-current-folder.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── force-paste.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── get-bundle-id.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── image-PDF-compress.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── Compress Images in PDFs.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow │ ├── Compress Images.workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow │ └── default.sh ├── kill-port.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── kill-process.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── launchbar-edit-default-script.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── launchbar-show-index.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── launchbar-show-item-in-index.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── launchbar-update-index.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── mdls.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── network-restart.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── new-file-here.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── notes-search.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── README.md │ ├── default.py │ ├── shell.sh │ ├── showNote.sh │ └── showNotesFolder.sh ├── pdf-decrypt.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── pdf-merge.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── pdf-merge.workflow │ └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Thumbnail.png │ └── document.wflow ├── pdf-split.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── pdf-split.workflow │ └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Thumbnail.png │ └── document.wflow ├── recent-downloads.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── default.js │ └── getRecents.js ├── recent-trashes.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── default.js │ └── getRecents.js ├── safari-find-duplicate-bookmarks.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── default.js │ └── default.sh ├── safari-new-private-window.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh ├── scan-text.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ ├── RecognizeText │ ├── .gitignore │ ├── Package.swift │ └── Sources │ │ └── main.swift │ └── default.js ├── screen-cleaner.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── screenshots.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── shottr.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── spotlight-search.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── text-quotes-dumbify.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.js ├── text-trim-spaces-remove-blank-lines.lbaction └── Contents │ ├── Info.plist │ └── Scripts │ └── default.sh └── toggle-dark-mode.lbaction └── Contents ├── Info.plist └── Scripts └── default.sh /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/README.md -------------------------------------------------------------------------------- /apps-quit-all.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/apps-quit-all.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /apps-quit-all.lbaction/Contents/Scripts/default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/apps-quit-all.lbaction/Contents/Scripts/default.swift -------------------------------------------------------------------------------- /apps-restart-current.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/apps-restart-current.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /apps-restart-current.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/apps-restart-current.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /cleanshot-x-all-in-one.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/cleanshot-x-all-in-one.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /cleanshot-x-all-in-one.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # LaunchBar Action Script 4 | # 5 | 6 | open cleanshot://all-in-one 7 | -------------------------------------------------------------------------------- /clear-notifications.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/clear-notifications.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /clear-notifications.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/clear-notifications.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /dictionary-search.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/dictionary-search.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /dictionary-search.lbaction/Contents/Scripts/default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/dictionary-search.lbaction/Contents/Scripts/default.swift -------------------------------------------------------------------------------- /files-chmodx.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/files-chmodx.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /files-chmodx.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/files-chmodx.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /finder-browse-current-folder.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/finder-browse-current-folder.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /finder-browse-current-folder.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/finder-browse-current-folder.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /force-paste.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/force-paste.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /force-paste.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/force-paste.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /get-bundle-id.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/get-bundle-id.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /get-bundle-id.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/get-bundle-id.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images in PDFs.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/Compress Images.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /image-PDF-compress.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/image-PDF-compress.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /kill-port.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/kill-port.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /kill-port.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/kill-port.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /kill-process.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/kill-process.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /kill-process.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/kill-process.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /launchbar-edit-default-script.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-edit-default-script.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /launchbar-edit-default-script.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-edit-default-script.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /launchbar-show-index.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-show-index.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /launchbar-show-index.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-show-index.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /launchbar-show-item-in-index.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-show-item-in-index.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /launchbar-show-item-in-index.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-show-item-in-index.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /launchbar-update-index.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-update-index.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /launchbar-update-index.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/launchbar-update-index.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /mdls.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/mdls.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /mdls.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/mdls.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /network-restart.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/network-restart.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /network-restart.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/network-restart.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /new-file-here.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/new-file-here.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /new-file-here.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/new-file-here.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Scripts/README.md -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Scripts/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Scripts/default.py -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Scripts/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Scripts/shell.sh -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Scripts/showNote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Scripts/showNote.sh -------------------------------------------------------------------------------- /notes-search.lbaction/Contents/Scripts/showNotesFolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/notes-search.lbaction/Contents/Scripts/showNotesFolder.sh -------------------------------------------------------------------------------- /pdf-decrypt.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-decrypt.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /pdf-decrypt.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-decrypt.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /pdf-merge.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-merge.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-merge.lbaction/Contents/Scripts/pdf-merge.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /pdf-split.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-split.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/pdf-split.lbaction/Contents/Scripts/pdf-split.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /recent-downloads.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-downloads.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /recent-downloads.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-downloads.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /recent-downloads.lbaction/Contents/Scripts/getRecents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-downloads.lbaction/Contents/Scripts/getRecents.js -------------------------------------------------------------------------------- /recent-trashes.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-trashes.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /recent-trashes.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-trashes.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /recent-trashes.lbaction/Contents/Scripts/getRecents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/recent-trashes.lbaction/Contents/Scripts/getRecents.js -------------------------------------------------------------------------------- /safari-find-duplicate-bookmarks.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/safari-find-duplicate-bookmarks.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /safari-find-duplicate-bookmarks.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/safari-find-duplicate-bookmarks.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /safari-find-duplicate-bookmarks.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/safari-find-duplicate-bookmarks.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /safari-new-private-window.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/safari-new-private-window.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /safari-new-private-window.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/safari-new-private-window.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /scan-text.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/scan-text.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /scan-text.lbaction/Contents/Scripts/RecognizeText/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/scan-text.lbaction/Contents/Scripts/RecognizeText/.gitignore -------------------------------------------------------------------------------- /scan-text.lbaction/Contents/Scripts/RecognizeText/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/scan-text.lbaction/Contents/Scripts/RecognizeText/Package.swift -------------------------------------------------------------------------------- /scan-text.lbaction/Contents/Scripts/RecognizeText/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/scan-text.lbaction/Contents/Scripts/RecognizeText/Sources/main.swift -------------------------------------------------------------------------------- /scan-text.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/scan-text.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /screen-cleaner.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/screen-cleaner.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /screen-cleaner.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/screen-cleaner.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /screenshots.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/screenshots.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /screenshots.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/screenshots.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /shottr.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/shottr.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /shottr.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/shottr.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /spotlight-search.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/spotlight-search.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /spotlight-search.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/spotlight-search.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /text-quotes-dumbify.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/text-quotes-dumbify.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /text-quotes-dumbify.lbaction/Contents/Scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/text-quotes-dumbify.lbaction/Contents/Scripts/default.js -------------------------------------------------------------------------------- /text-trim-spaces-remove-blank-lines.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/text-trim-spaces-remove-blank-lines.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /text-trim-spaces-remove-blank-lines.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/text-trim-spaces-remove-blank-lines.lbaction/Contents/Scripts/default.sh -------------------------------------------------------------------------------- /toggle-dark-mode.lbaction/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/toggle-dark-mode.lbaction/Contents/Info.plist -------------------------------------------------------------------------------- /toggle-dark-mode.lbaction/Contents/Scripts/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeybiran/launchbar-actions/HEAD/toggle-dark-mode.lbaction/Contents/Scripts/default.sh --------------------------------------------------------------------------------