gitextract_go6t_duu/ ├── .gitattributes ├── .github/ │ ├── pull_request_template.md │ ├── stale.yml │ └── workflows/ │ └── script-commands.yml ├── .gitignore ├── .swiftlint.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── Tools/ │ └── Toolkit/ │ ├── CONTRIBUTING.md │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources/ │ │ ├── Toolkit/ │ │ │ ├── SubCommands/ │ │ │ │ ├── GenerateDocumentation.swift │ │ │ │ ├── Report.swift │ │ │ │ ├── SetExecutable.swift │ │ │ │ └── Version.swift │ │ │ └── main.swift │ │ └── ToolkitLibrary/ │ │ ├── Core/ │ │ │ ├── Console.swift │ │ │ ├── Documentation/ │ │ │ │ └── Documentation.swift │ │ │ ├── GitShell.swift │ │ │ ├── RegEx.swift │ │ │ ├── Report/ │ │ │ │ └── Report.swift │ │ │ ├── Stores/ │ │ │ │ └── DataManager.swift │ │ │ └── Toolkit/ │ │ │ ├── Toolkit+Constants.swift │ │ │ ├── Toolkit+GenerateDocumentation.swift │ │ │ ├── Toolkit+Mode.swift │ │ │ ├── Toolkit+ReadContent.swift │ │ │ ├── Toolkit+Report.swift │ │ │ ├── Toolkit+ReportType.swift │ │ │ └── Toolkit.swift │ │ ├── Errors/ │ │ │ └── Reader+Error.swift │ │ ├── Extensions/ │ │ │ ├── Array/ │ │ │ │ ├── Array+Metadata.swift │ │ │ │ └── Array+UInt8.swift │ │ │ ├── Character/ │ │ │ │ ├── Character+Emoji.swift │ │ │ │ └── Character+String.swift │ │ │ ├── Codable/ │ │ │ │ └── Encodable+Data.swift │ │ │ ├── Data/ │ │ │ │ ├── Data+Bytes.swift │ │ │ │ └── Data+Decodable.swift │ │ │ ├── Dictionary/ │ │ │ │ └── Dictionary+Codable.swift │ │ │ ├── Integer/ │ │ │ │ ├── Int+Indent.swift │ │ │ │ └── UInt8+Data.swift │ │ │ ├── String/ │ │ │ │ ├── String+Emoji.swift │ │ │ │ ├── String+Interpolation.swift │ │ │ │ ├── String+URL.swift │ │ │ │ └── String.swift │ │ │ └── TSCBasic/ │ │ │ ├── AbsolutePath+SocialBasename.swift │ │ │ └── FileSystem+AbsolutePath.swift │ │ ├── Models/ │ │ │ ├── Group.swift │ │ │ ├── Language+Information.swift │ │ │ ├── Language.swift │ │ │ ├── Metadata.swift │ │ │ ├── RaycastData.swift │ │ │ ├── ScriptCommand+Author.swift │ │ │ ├── ScriptCommand+Icon.swift │ │ │ ├── ScriptCommand+Mode.swift │ │ │ └── ScriptCommand.swift │ │ ├── Protocols/ │ │ │ └── MarkdownDescriptionProtocol.swift │ │ └── Typealiases/ │ │ └── Identifier.swift │ ├── Tests/ │ │ ├── LinuxMain.swift │ │ └── ToolkitLibraryTests/ │ │ ├── ToolkitLibraryTests.swift │ │ └── XCTestManifests.swift │ └── integration.sh ├── _enabled-commands/ │ ├── .gitignore │ └── README.md ├── commands/ │ ├── README.md │ ├── ai/ │ │ └── gemini/ │ │ └── gemini.js │ ├── apps/ │ │ ├── Message/ │ │ │ └── copycode.sh │ │ ├── agenda/ │ │ │ ├── README.md │ │ │ ├── agenda-new-note.sh │ │ │ ├── agenda-on-the-agenda.sh │ │ │ └── agenda-today.sh │ │ ├── amphetamine/ │ │ │ ├── amphetamine-off.applescript │ │ │ └── amphetamine-on.applescript │ │ ├── baremetrics/ │ │ │ ├── get-arpu.sh │ │ │ ├── get-arr.sh │ │ │ ├── get-ltv.sh │ │ │ ├── get-mrr.sh │ │ │ └── simple-dashboard.sh │ │ ├── bartender/ │ │ │ └── bartender-search.applescript │ │ ├── bear/ │ │ │ ├── bear-add-note.sh │ │ │ ├── bear-open-note.sh │ │ │ ├── bear-open-tag.sh │ │ │ ├── bear-search.sh │ │ │ ├── bear-today.sh │ │ │ └── bear-todo.sh │ │ ├── busycal/ │ │ │ └── new-busycal-event-or-task.applescript │ │ ├── chatgpt/ │ │ │ └── chatgpt-open-safari.applescript │ │ ├── claude/ │ │ │ └── claude.js │ │ ├── cleanshot/ │ │ │ ├── cleanshot-add-quick-access-overlay.sh │ │ │ ├── cleanshot-annotate.sh │ │ │ ├── cleanshot-capture-area.sh │ │ │ ├── cleanshot-capture-fullscreen.sh │ │ │ ├── cleanshot-capture-previous-area.sh │ │ │ ├── cleanshot-capture-text.sh │ │ │ ├── cleanshot-capture-window.sh │ │ │ ├── cleanshot-open-from-clipboard.sh │ │ │ ├── cleanshot-pin.sh │ │ │ ├── cleanshot-record-screen-with-keystroke-pro.sh │ │ │ ├── cleanshot-record-screen.sh │ │ │ ├── cleanshot-restore.sh │ │ │ ├── cleanshot-scrolling-capture.sh │ │ │ ├── cleanshot-self-timer.sh │ │ │ └── cleanshot-toggle-desktop-icons.sh │ │ ├── craft/ │ │ │ ├── craft-create-doc.template.sh │ │ │ └── craft-search-workspace.template.sh │ │ ├── deepl/ │ │ │ ├── deepl-app-translate.applescript │ │ │ └── deepl-web-translate.sh │ │ ├── devutils/ │ │ │ ├── backslash.sh │ │ │ ├── base64encode.sh │ │ │ ├── base64image.sh │ │ │ ├── cronparser.sh │ │ │ ├── cssformatter.sh │ │ │ ├── csv2json.sh │ │ │ ├── erbformatter.sh │ │ │ ├── hashing.sh │ │ │ ├── html2jsx.sh │ │ │ ├── htmlencode.sh │ │ │ ├── htmlformatter.sh │ │ │ ├── htmlpreview.sh │ │ │ ├── jsformatter.sh │ │ │ ├── json2csv.sh │ │ │ ├── json2yaml.sh │ │ │ ├── jsonformatter.sh │ │ │ ├── jwt.sh │ │ │ ├── lessformatter.sh │ │ │ ├── loremipsum.sh │ │ │ ├── markdownpreview.sh │ │ │ ├── numberbase.sh │ │ │ ├── qrcode.sh │ │ │ ├── querystringparser.sh │ │ │ ├── regextester.sh │ │ │ ├── scssformatter.sh │ │ │ ├── sqlformatter.sh │ │ │ ├── stringcaseconverter.sh │ │ │ ├── stringinspect.sh │ │ │ ├── textdiff.sh │ │ │ ├── unixtime.sh │ │ │ ├── urlencode.sh │ │ │ ├── uuidtool.sh │ │ │ ├── xmlformatter.sh │ │ │ └── yaml2json.sh │ │ ├── dictionary/ │ │ │ ├── images/ │ │ │ │ └── dictionary.icns │ │ │ └── look-up-in-dictionary.applescript │ │ ├── dnd-me/ │ │ │ ├── start-dnd-me.sh │ │ │ └── stop-dnd-me.sh │ │ ├── downie/ │ │ │ └── download-video.sh │ │ ├── espanso/ │ │ │ ├── disable-espanso.sh │ │ │ ├── enable-espanso.sh │ │ │ ├── espanso-create-expansion.sh │ │ │ ├── restart-espanso.sh │ │ │ ├── start-espanso.sh │ │ │ └── stop-espanso.sh │ │ ├── eudic/ │ │ │ └── look-up-in-eudic.applescript │ │ ├── evernote/ │ │ │ ├── create-note-paste-clipboard.applescript │ │ │ └── create-note.applescript │ │ ├── expressvpn/ │ │ │ ├── expressvpn-connect.applescript │ │ │ ├── expressvpn-disconnect.applescript │ │ │ └── expressvpn-reconnect.applescript │ │ ├── fantastical/ │ │ │ ├── create-event.applescript │ │ │ └── create-todo-in-fantastical.applescript │ │ ├── ferdi/ │ │ │ ├── ferdi-open-service-by-index.applescript │ │ │ └── ferdi-open-service-by-name.applescript │ │ ├── find-my/ │ │ │ ├── README.md │ │ │ ├── fmp.js │ │ │ └── package.json │ │ ├── focus/ │ │ │ ├── focus-preferences.sh │ │ │ ├── focus-start-break-5.sh │ │ │ ├── focus-start-custom-break.sh │ │ │ ├── focus-start-custom-session.sh │ │ │ ├── focus-start-session-25.sh │ │ │ ├── focus-start-session.sh │ │ │ ├── focus-stop-break.sh │ │ │ ├── focus-stop-session.sh │ │ │ └── focus-toggle-focus.sh │ │ ├── goodlinks/ │ │ │ ├── goodlinks-last-unread-link.sh │ │ │ ├── goodlinks-open-link.sh │ │ │ ├── goodlinks-random-unread-link.sh │ │ │ ├── goodlinks-read-list.sh │ │ │ ├── goodlinks-save-link.sh │ │ │ ├── goodlinks-starred-list.sh │ │ │ ├── goodlinks-tagged-links.sh │ │ │ ├── goodlinks-unread-list.sh │ │ │ └── goodlinks-untagged-list.sh │ │ ├── hazeover/ │ │ │ ├── hazeover-set-intensity.applescript │ │ │ └── hazeover-toggle-dimming.applescript │ │ ├── hyper/ │ │ │ └── hyper-run-shell-command.applescript │ │ ├── iconsur/ │ │ │ └── iconsur.sh │ │ ├── iterm/ │ │ │ ├── iterm-open-profile-in-new-window.applescript │ │ │ └── iterm-run-shell-command.applescript │ │ ├── lungo/ │ │ │ ├── lungo-activate.sh │ │ │ ├── lungo-deactivate.sh │ │ │ └── lungo-toggle.sh │ │ ├── mail/ │ │ │ ├── copy-captcha-from-mail.py │ │ │ └── copy-foreground-mail-deeplink.applescript │ │ ├── medo/ │ │ │ ├── add-task.sh │ │ │ ├── medo-float-large.sh │ │ │ ├── medo-float-small.sh │ │ │ └── medo-float.sh │ │ ├── meetingbar/ │ │ │ ├── meetingbar-create-meeting.applescript │ │ │ └── meetingbar-join-meeting.applescript │ │ ├── menubarx/ │ │ │ ├── close-last-menubarx-tab.sh │ │ │ ├── open-in-menubarx.sh │ │ │ └── open-tab-in-menubar.applescript │ │ ├── mullvad/ │ │ │ ├── README.md │ │ │ ├── connect.sh │ │ │ ├── disconnect.sh │ │ │ ├── location.sh │ │ │ ├── reconnect.sh │ │ │ ├── search.sh │ │ │ └── status.sh │ │ ├── noteplan3/ │ │ │ ├── README.md │ │ │ ├── noteplan-append-daily-note.sh │ │ │ └── noteplan-new-note-from-clipboard.sh │ │ ├── notes/ │ │ │ ├── append-note-from-clipboard.applescript │ │ │ ├── create-note-from-clipboard.applescript │ │ │ ├── create-note.applescript │ │ │ ├── open-note.applescript │ │ │ └── search-note-by-name.applescript │ │ ├── obsidian/ │ │ │ ├── obsidian-create-note.template.sh │ │ │ └── obsidian-search-vault.template.sh │ │ ├── one-thing/ │ │ │ ├── one-thing-clear-text.sh │ │ │ └── one-thing-set-text.sh │ │ ├── openvpn/ │ │ │ ├── connect-openvpn.applescript │ │ │ ├── disconnect-openvpn.applescript │ │ │ └── quit-openvpn.applescript │ │ ├── phpstorm/ │ │ │ ├── .gitignore │ │ │ └── recent-projects.sh │ │ ├── plash/ │ │ │ ├── plash-add-website.sh │ │ │ ├── plash-next-website.sh │ │ │ ├── plash-previous-website.sh │ │ │ ├── plash-random-website.sh │ │ │ ├── plash-reload-website.sh │ │ │ └── plash-toggle-browser-mode.sh │ │ ├── playground/ │ │ │ ├── README.md │ │ │ ├── open-new-playground.py │ │ │ └── open-new-view-playground.py │ │ ├── pulse-secure/ │ │ │ ├── README.md │ │ │ ├── pulse-secure-connect.applescript │ │ │ ├── pulse-secure-disconnect.applescript │ │ │ ├── pulse-secure-resume.applescript │ │ │ └── pulse-secure-suspend.applescript │ │ ├── quip/ │ │ │ ├── .gitignore │ │ │ ├── README.org │ │ │ ├── quip-new.template.py │ │ │ ├── quip.py │ │ │ ├── quip_config.chezmoi.template.ini │ │ │ ├── quip_config.template.ini │ │ │ ├── quip_utils.py │ │ │ └── set-up-quip-commands.py │ │ ├── raycast/ │ │ │ └── celebrate.sh │ │ ├── reminders/ │ │ │ └── reminders-create-reminder.sh │ │ ├── safari/ │ │ │ ├── README.md │ │ │ ├── safari-bing-edge-user-agent.applescript │ │ │ ├── safari-clear-cache-reload.applescript │ │ │ ├── safari-close-all-tabs.applescript │ │ │ ├── safari-close-duplicated-tabs.applescript │ │ │ ├── safari-close-other-tabs.applescript │ │ │ ├── safari-close-tabs-left.applescript │ │ │ ├── safari-close-tabs-right.applescript │ │ │ ├── safari-create-reading-list-item.applescript │ │ │ ├── safari-current-page-url-in-chrome.applescript │ │ │ ├── safari-current-page-url-in-firefox.applescript │ │ │ ├── safari-download-url.applescript │ │ │ └── safari-duplicate-tab.applescript │ │ ├── session/ │ │ │ ├── session-abandon.sh │ │ │ ├── session-finish.sh │ │ │ ├── session-pause.sh │ │ │ ├── session-start-new.sh │ │ │ └── session-start-previous.sh │ │ ├── sidenotes/ │ │ │ └── sidenotes-create-note.applescript │ │ ├── sip/ │ │ │ ├── sip-add-hex-color.sh │ │ │ ├── sip-check-contrast-hex.sh │ │ │ ├── sip-open-check-contrast.sh │ │ │ └── sip-show-picker.sh │ │ ├── stickies/ │ │ │ └── new-floating-sticky.applescript │ │ ├── sublime/ │ │ │ └── open-with-sublime.applescript │ │ ├── surfshark/ │ │ │ ├── surfshark-vpn-start.sh │ │ │ ├── surfshark-vpn-status.sh │ │ │ ├── surfshark-vpn-stop.sh │ │ │ └── surfshark.config.sh │ │ ├── tailscale/ │ │ │ ├── README.md │ │ │ ├── tailscale-connect.sh │ │ │ ├── tailscale-disconnect.sh │ │ │ ├── tailscale-ip.sh │ │ │ └── tailscale-switch.sh │ │ ├── terminal-translate/ │ │ │ └── translate.sh │ │ ├── things/ │ │ │ ├── README.md │ │ │ ├── things-create-todo.sh │ │ │ ├── things-current-todo.applescript │ │ │ ├── things-search-to-dos.sh │ │ │ └── things-today.applescript │ │ ├── timing/ │ │ │ ├── timing-start-timer.js │ │ │ └── timing-stop-timer.js │ │ ├── todoist/ │ │ │ ├── create-task.template.sh │ │ │ └── get-tasks.template.sh │ │ ├── translate-shell/ │ │ │ ├── translate-shell-language-pair.py │ │ │ ├── translate-to-en.sh │ │ │ └── translate-to-zh.sh │ │ ├── trello/ │ │ │ └── create-trello-card.template.py │ │ ├── tunnelblick/ │ │ │ ├── tunnelblick-connect-all.applescript │ │ │ ├── tunnelblick-connect.applescript │ │ │ ├── tunnelblick-disconnect-all.applescript │ │ │ └── tunnelblick-disconnect.applescript │ │ ├── viscosity/ │ │ │ ├── viscosity-connect-all.applescript │ │ │ ├── viscosity-connect.applescript │ │ │ ├── viscosity-disconnect-all.applescript │ │ │ └── viscosity-disconnect.applescript │ │ ├── warp/ │ │ │ ├── warp-reauth.sh │ │ │ ├── warp-start.sh │ │ │ ├── warp-status.sh │ │ │ ├── warp-stop.sh │ │ │ └── warp-toggle.sh │ │ ├── webstorm/ │ │ │ └── open-workspace.template.sh │ │ ├── wikipedia/ │ │ │ └── wikipedia-search.py │ │ └── y-pomodoro/ │ │ ├── pause.sh │ │ ├── resume.sh │ │ ├── show.sh │ │ ├── start.sh │ │ └── stop.sh │ ├── browsing/ │ │ ├── Youtube Shorts in video player.sh │ │ ├── chrome-current-page-url.sh │ │ ├── convert-twitter-to-nitter.js │ │ ├── git-io.sh │ │ ├── go-to-outine.sh │ │ ├── new-browser-window.sh │ │ ├── open-chrome-without-cors.sh │ │ ├── open-in-guest-profile.sh │ │ ├── open-multiple-websites-on-safari.template.sh │ │ ├── peekalink.template.sh │ │ ├── safari-current-page-url.sh │ │ ├── safari-current-window-urls.applescript │ │ ├── shlink-create-short-url.template.sh │ │ ├── short-url-emoji.sh │ │ ├── shorten-url-bitly.template.sh │ │ ├── shorten-url.sh │ │ ├── to-private-browsing.sh │ │ └── website-screenshots.sh │ ├── communication/ │ │ ├── call-with-iphone.sh │ │ ├── cloudup/ │ │ │ ├── cloudup-paste.sh │ │ │ ├── cloudup-pick.sh │ │ │ └── cloudup-upload.sh │ │ ├── duckduckgo-email-protection/ │ │ │ ├── README.md │ │ │ ├── configure-@duck.com-script-command.applescript │ │ │ └── generate-unique-email-address.applescript │ │ ├── emojis/ │ │ │ ├── emoji-copy.sh │ │ │ ├── emojis-search.sh │ │ │ └── random-emoji.sh │ │ ├── gmail/ │ │ │ └── google-gmail.sh │ │ ├── google-meet/ │ │ │ └── meet.sh │ │ ├── imessage-2fa.sh │ │ ├── let-me-google-that.sh │ │ ├── mail/ │ │ │ └── open-most-recent-email.applescript │ │ ├── messenger/ │ │ │ └── messenger-open-conversation.applescript │ │ ├── say.sh │ │ ├── share-secret-doppler.py │ │ ├── slack/ │ │ │ ├── add-slack-reminder.template.sh │ │ │ ├── clear-slack-DND-status.sh │ │ │ ├── clear-slack-status.template.sh │ │ │ ├── set-slack-DND-status.sh │ │ │ ├── set-slack-status-spotify.sh │ │ │ ├── set-slack-status.template.sh │ │ │ ├── set-slack-wfh-status.sh │ │ │ ├── slack-dev-mode.sh │ │ │ ├── slack-jump-to.applescript │ │ │ ├── slack-open-workspace-by-index.applescript │ │ │ ├── slack-open-workspace-by-name.applescript │ │ │ └── slack-send-message.applescript │ │ ├── xkcdpass.sh │ │ └── zoom/ │ │ ├── leave-meeting.applescript │ │ ├── rename-profile.applescript │ │ ├── toggle-mic.applescript │ │ └── toggle-video.applescript │ ├── conversions/ │ │ ├── change-case/ │ │ │ ├── camelcase.py │ │ │ ├── kebabcase.py │ │ │ ├── lowercase.py │ │ │ ├── snakecase.py │ │ │ ├── titlecase.py │ │ │ └── uppercase.py │ │ ├── clipboard-ocr.sh │ │ ├── clipboard-to-markdown.js │ │ ├── color-conversion.sh │ │ ├── column-to-comma.sh │ │ ├── create-gif-from-video.py │ │ ├── create-markdown-table.js │ │ ├── epoch-to-human-date.sh │ │ ├── google-docs-to-markdown.sh │ │ ├── hex-to-rgb.sh │ │ ├── hex-to-rgba.sh │ │ ├── human-date-to-epoch.sh │ │ ├── inputs-to-markdown-link.sh │ │ ├── markdown-to-telegram.py │ │ ├── paste-as-plain-text.applescript │ │ ├── qr-code-screenshot-to-text.sh │ │ ├── qrcode-generate.sh │ │ ├── raw-html-to-rich-text-clipboard.sh │ │ ├── rich-text-clipboard-to-markdown.sh │ │ ├── space-fixer.sh │ │ ├── strikethrough.sh │ │ ├── trim-newlines-tabs.sh │ │ ├── unicode-superscript.sh │ │ ├── unix-time-reader.sh │ │ ├── vaporwave-text.sh │ │ ├── what-day-is.py │ │ └── zalgo-text.swift │ ├── culture/ │ │ ├── prayer-summary.template.sh │ │ └── prayer-times.sh │ ├── dashboard/ │ │ ├── bitcoin-price-usd.sh │ │ ├── countdowns/ │ │ │ ├── countdown-to-christmas.sh │ │ │ ├── countdown-to-date.template.sh │ │ │ └── create-countdown.template.sh │ │ ├── crypto-portfolio.py │ │ ├── current-weather.sh │ │ ├── doge.sh │ │ ├── ethereum-price-usd.sh │ │ ├── fear-index.sh │ │ ├── firebase/ │ │ │ ├── firebase-authentication-get-token.template.sh │ │ │ └── firebase-realtime-db-get-data.template.sh │ │ ├── mood-meter/ │ │ │ ├── add-mood.js │ │ │ ├── display-mood-month.js │ │ │ └── display-mood-year.js │ │ ├── nextdns-status-check.py │ │ ├── open-ai-usage.sh │ │ ├── open-weather/ │ │ │ ├── weather-current.template.sh │ │ │ └── weather-forecast.template.sh │ │ ├── precious-metals.sh │ │ ├── sabnzbd-queue-status.template.sh │ │ ├── speedtest.sh │ │ ├── stock-portfolio.rb │ │ ├── system-activity.sh │ │ ├── tesla.template.sh │ │ ├── twitter-statistics.template.rb │ │ ├── world-time.sh │ │ ├── year-progress.sh │ │ └── youtube-statistics.template.rb │ ├── dashboards/ │ │ └── iperf-speed-test.template.sh │ ├── developer-utils/ │ │ ├── add-ssh-keys.template.applescript │ │ ├── aws/ │ │ │ ├── amazon-s3-download.sh │ │ │ ├── aws-sso-util.sh │ │ │ └── whatismyregion.sh │ │ ├── base-converter.sh │ │ ├── base64-decode-input.sh │ │ ├── base64-encode-input.sh │ │ ├── brew/ │ │ │ ├── brew-cask-upgrade.sh │ │ │ ├── brew-doctor.sh │ │ │ ├── brew-install.sh │ │ │ ├── brew-leaves.sh │ │ │ ├── brew-list.sh │ │ │ ├── brew-outdated.sh │ │ │ ├── brew-services-list.sh │ │ │ ├── brew-services-restart.sh │ │ │ ├── brew-services-start.sh │ │ │ ├── brew-services-stop.sh │ │ │ ├── brew-uninstall-application.sh │ │ │ ├── brew-update.sh │ │ │ └── brew-upgrade.sh │ │ ├── cheat.sh │ │ ├── check-domain.template.sh │ │ ├── clear-derived-data.sh │ │ ├── clear_xcode.sh │ │ ├── cloudflare/ │ │ │ └── purge-cloudflare-cache.template.sh │ │ ├── copy-focused-finder-window-path.sh │ │ ├── copy-ssh-public-key.sh │ │ ├── count-characters.sh │ │ ├── create-image-from-code.sh │ │ ├── decode-base64.sh │ │ ├── decode-jwt.sh │ │ ├── decode-url.sh │ │ ├── delete-current-line.applescript │ │ ├── dig.sh │ │ ├── docker/ │ │ │ ├── clean-docker.sh │ │ │ ├── docker-images.sh │ │ │ ├── docker-ps.sh │ │ │ ├── docker-system-prune.sh │ │ │ ├── run-docker.sh │ │ │ └── stop-docker.sh │ │ ├── encode-base64.sh │ │ ├── encode-url.sh │ │ ├── error-info.sh │ │ ├── escape-shell-chars.sh │ │ ├── flutter-create.sh │ │ ├── format-swift.sh │ │ ├── generate-git-ignore.sh │ │ ├── generate-password.sh │ │ ├── generate-ulid.sh │ │ ├── generate-uuid.sh │ │ ├── genpasswd.py │ │ ├── get-ttfb.sh │ │ ├── git/ │ │ │ ├── git-clear-changes.sh │ │ │ ├── git-save-changes.sh │ │ │ ├── git-standup.sh │ │ │ ├── git-status.sh │ │ │ ├── git-switch-branch.sh │ │ │ └── git-sync-changes.sh │ │ ├── github/ │ │ │ ├── create-github-gist.template.sh │ │ │ ├── github-contributions.template.sh │ │ │ ├── github-open-commit-history.sh │ │ │ ├── github-open-pull-requests-details.template.rb │ │ │ ├── github-open-pull-requests-page.sh │ │ │ ├── github-open-pull-requests.template.rb │ │ │ ├── github-repository-stars.template.rb │ │ │ ├── github-repository-stars_all_repos_template.rb │ │ │ ├── github-review-requests.template.rb │ │ │ ├── github-unread-notifications.template.sh │ │ │ └── open-gh-repo-pr-or-issue.sh │ │ ├── gitlab/ │ │ │ ├── gitlab-issues.template.py │ │ │ ├── gitlab-mergerequests.template.py │ │ │ ├── gitlab-todos.template.py │ │ │ ├── gitlabconfig.py │ │ │ └── gitlabhelper.py │ │ ├── google/ │ │ │ ├── google-lighthouse.sh │ │ │ ├── google-psi-desktop.sh │ │ │ └── google-psi-mobile.sh │ │ ├── ignore-package-folders-time-machine.template.sh │ │ ├── ip/ │ │ │ ├── get-external-ip-v4.sh │ │ │ ├── get-external-ip-v6.sh │ │ │ ├── get-local-ip-v4.sh │ │ │ ├── get-local-ip-v6.sh │ │ │ ├── get-url-ip-v4.sh │ │ │ └── get-url-ip-v6.sh │ │ ├── is-it-up.sh │ │ ├── join-lines.sh │ │ ├── json-stringify-text.js │ │ ├── json-to-go-struct.sh │ │ ├── lorem-ipsum.sh │ │ ├── md5-hash.sh │ │ ├── microlink.sh │ │ ├── minikube/ │ │ │ ├── minikube-config-set.sh │ │ │ ├── minikube-pause.sh │ │ │ ├── minikube-start.sh │ │ │ ├── minikube-status.sh │ │ │ ├── minikube-stop.sh │ │ │ └── minikube-unpause.sh │ │ ├── open-link-simulator.applescript │ │ ├── pa11y.sh │ │ ├── ping-monitor.template.sh │ │ ├── ping.sh │ │ ├── prettify-json.sh │ │ ├── record-simulator.sh │ │ ├── run-bash-command.sh │ │ ├── run-command-in-finder.sh │ │ ├── search-script-command.sh │ │ ├── search-script-command.swift │ │ ├── sentry/ │ │ │ ├── sentry-unresolved-issues-by-project.template.py │ │ │ └── sentry-unresolved-issues.template.py │ │ ├── sha1-hash.sh │ │ ├── solana/ │ │ │ ├── solana-tx-blink-extract.sh │ │ │ ├── solana-tx-details.sh │ │ │ └── solana-tx-inspector.sh │ │ ├── strong-password-generator.sh │ │ ├── time-between-dates.js │ │ ├── time-calculator.js │ │ ├── tldr.sh │ │ ├── toggle_ssh_proxy_tunnel.template.sh │ │ ├── transform-case.sh │ │ ├── trim-git-commit-hash.sh │ │ ├── unix-timestamp.sh │ │ ├── unshorten-url.sh │ │ ├── view-scripting-dictionary.sh │ │ ├── vscode/ │ │ │ ├── open-folder-in-vscode.applescript │ │ │ └── open-project-in-vscode.sh │ │ ├── wayback-machine-save.sh │ │ ├── whois.sh │ │ └── xcode/ │ │ ├── xcode-last-project.sh │ │ └── xcode-recent-project.sh │ ├── extensions.json │ ├── home/ │ │ ├── elgato/ │ │ │ ├── elgato-key-light-decrease-brightness.template.rb │ │ │ ├── elgato-key-light-increase-brightness.template.rb │ │ │ ├── elgato-key-light-turn-off.template.rb │ │ │ └── elgato-key-light-turn-on.template.rb │ │ └── philips-hue/ │ │ ├── hue-bulb.template.mjs │ │ ├── hue-lights-inline.template.mjs │ │ ├── hue-room.template.mjs │ │ └── hue-rooms-inline.template.mjs │ ├── math/ │ │ ├── calculate-CAGR.sh │ │ ├── calculate-combinations.js │ │ ├── calculate-growth.sh │ │ ├── latex-calculator.py │ │ ├── random-number.sh │ │ └── wolfram-alpha.template.sh │ ├── media/ │ │ ├── apple-music/ │ │ │ ├── apple-music-current-track.applescript │ │ │ ├── apple-music-go-to-artist-page.sh │ │ │ ├── apple-music-hate-current-track.applescript │ │ │ ├── apple-music-love-current-track.applescript │ │ │ ├── apple-music-next.applescript │ │ │ ├── apple-music-pause.applescript │ │ │ ├── apple-music-play.applescript │ │ │ ├── apple-music-previous.applescript │ │ │ ├── apple-music-repeat.applescript │ │ │ ├── apple-music-search.applescript │ │ │ ├── apple-music-set-volume.applescript │ │ │ ├── apple-music-shuffle.applescript │ │ │ ├── apple-music-stop.applescript │ │ │ ├── apple-music-volume-down.applescript │ │ │ └── apple-music-volume-up.applescript │ │ ├── apple-tv/ │ │ │ ├── apple-tv-pause.applescript │ │ │ ├── apple-tv-play-movie.applescript │ │ │ ├── apple-tv-play.applescript │ │ │ ├── apple-tv-set-volume.applescript │ │ │ └── apple-tv-stop.applescript │ │ ├── cmus/ │ │ │ ├── next-track.sh │ │ │ ├── play-pause.sh │ │ │ ├── previous-track.sh │ │ │ ├── toggle-repeat.sh │ │ │ ├── toggle-shuffle.sh │ │ │ └── track-info.sh │ │ ├── endel/ │ │ │ ├── endel-alarm.sh │ │ │ ├── endel-deep-focus.sh │ │ │ ├── endel-focus.sh │ │ │ ├── endel-lullaby.sh │ │ │ ├── endel-recovery.sh │ │ │ ├── endel-relax.sh │ │ │ ├── endel-scenarios-deepwork.sh │ │ │ ├── endel-scenarios-homework.sh │ │ │ ├── endel-scenarios-meditate.sh │ │ │ ├── endel-scenarios-powernap.sh │ │ │ ├── endel-scenarios-read.sh │ │ │ ├── endel-scenarios-selfcare.sh │ │ │ ├── endel-scenarios-unwind.sh │ │ │ ├── endel-scenarios-workout.sh │ │ │ ├── endel-scenarios-yoga.sh │ │ │ ├── endel-sleep.sh │ │ │ ├── endel-study.sh │ │ │ ├── endel-timer.sh │ │ │ └── endel-wisdom.sh │ │ ├── foobar2000/ │ │ │ ├── foobar2000-next.applescript │ │ │ ├── foobar2000-pause.applescript │ │ │ └── foobar2000-pervious.applescript │ │ ├── lowfi/ │ │ │ └── lowfi.sh │ │ ├── sonos/ │ │ │ ├── README.md │ │ │ ├── sonos-play-favorite.sh │ │ │ ├── sonos-volume-down.sh │ │ │ ├── sonos-volume-set.sh │ │ │ └── sonos-volume-up.sh │ │ ├── speaker-setup/ │ │ │ └── speaker-setup.sh │ │ ├── spotify/ │ │ │ ├── create-spotify-command.js │ │ │ ├── spotify-current-track.applescript │ │ │ ├── spotify-next-track.applescript │ │ │ ├── spotify-now-playing-url.applescript │ │ │ ├── spotify-pause.applescript │ │ │ ├── spotify-play-pause.applescript │ │ │ ├── spotify-play-playlist.template.applescript │ │ │ ├── spotify-play.applescript │ │ │ └── spotify-previous-track.applescript │ │ └── tidal/ │ │ ├── tidal-next-track.applescript │ │ ├── tidal-pause.applescript │ │ ├── tidal-play.applescript │ │ ├── tidal-previous-track.applescript │ │ └── tidal.applescript │ ├── navigation/ │ │ ├── hide-application.applescript │ │ ├── justfocus.applescript │ │ ├── open-applications.sh │ │ ├── open-clipboard-in-pixelmator-pro.applescript │ │ ├── open-desktop-url-from-clipboard.swift │ │ ├── open-desktop.sh │ │ ├── open-documents.sh │ │ ├── open-downloads.sh │ │ ├── open-finder-from-iterm.applescript │ │ ├── open-finder-from-terminal.applescript │ │ ├── open-finder.sh │ │ ├── open-home.sh │ │ ├── open-iterm-from-finder.applescript │ │ ├── open-last-downloaded.sh │ │ ├── open-library.sh │ │ ├── open-terminal-from-finder.applescript │ │ ├── open-url-from-clipboard.sh │ │ ├── quit-application.applescript │ │ ├── restart-application.applescript │ │ ├── search-in-dash.sh │ │ └── search-in-devdocs.sh │ ├── productivity/ │ │ ├── bitwarden/ │ │ │ ├── README.md │ │ │ ├── copy-first-matching-password.sh │ │ │ ├── copy-first-matching-totp.sh │ │ │ ├── create-text-send.sh │ │ │ ├── delete-send.sh │ │ │ ├── edit-send.sh │ │ │ ├── list-sends.sh │ │ │ ├── lock.sh │ │ │ ├── log-in-apikey.template.sh │ │ │ ├── log-in.template.sh │ │ │ ├── log-out.sh │ │ │ ├── receive-text-send.sh │ │ │ ├── search-vault-items.sh │ │ │ ├── status.sh │ │ │ └── unlock.sh │ │ ├── imgur/ │ │ │ ├── imgur-upload-clipboard-image.template.sh │ │ │ ├── imgur-upload-latest-screenshot.template.sh │ │ │ └── screenshot-and-imgur.sh │ │ ├── macocr/ │ │ │ └── macocr-run-ocr.sh │ │ ├── pomodoro/ │ │ │ ├── pomodoro-start-timer.sh │ │ │ ├── pomodoro-status.sh │ │ │ └── pomodoro-stop-timer.sh │ │ ├── qpdf/ │ │ │ └── compress-pdf-qpdf.sh │ │ ├── stopwatch/ │ │ │ ├── stopwatch-progress.sh │ │ │ ├── stopwatch-start.sh │ │ │ └── stopwatch-stop.sh │ │ ├── tesseract/ │ │ │ └── tesseract-ocr.sh │ │ └── writing/ │ │ ├── dictionary-lookup.swift │ │ └── word-count.sh │ ├── remote-control/ │ │ ├── ddc/ │ │ │ ├── arm64/ │ │ │ │ ├── screen-dp.sh │ │ │ │ └── screen-hdmi.sh │ │ │ └── x86/ │ │ │ ├── screen-dp.sh │ │ │ └── screen-hdmi.sh │ │ ├── denon-avr/ │ │ │ ├── configure.applescript │ │ │ ├── power-off.applescript │ │ │ ├── power-on.applescript │ │ │ ├── set-volume.applescript │ │ │ ├── volume-down.applescript │ │ │ └── volume-up.applescript │ │ ├── lg-tv/ │ │ │ ├── README.md │ │ │ ├── authenticate.sh │ │ │ ├── change-channel.sh │ │ │ ├── change-input.sh │ │ │ ├── change-sound-output.sh │ │ │ ├── change-volume.sh │ │ │ ├── close-app.sh │ │ │ ├── execute-command.sh │ │ │ ├── fast-forward-media.sh │ │ │ ├── list-apps.sh │ │ │ ├── list-channels.sh │ │ │ ├── list-inputs.sh │ │ │ ├── list-launch-points.sh │ │ │ ├── list-services.sh │ │ │ ├── mute.sh │ │ │ ├── open-app-with-payload.sh │ │ │ ├── open-app.sh │ │ │ ├── open-browser.sh │ │ │ ├── open-youtube-id.sh │ │ │ ├── open-youtube-url.sh │ │ │ ├── pause-media.sh │ │ │ ├── play-media.sh │ │ │ ├── rewind-media.sh │ │ │ ├── scan.sh │ │ │ ├── send-notification-with-icon.sh │ │ │ ├── send-notification.sh │ │ │ ├── show-audio-status.sh │ │ │ ├── show-audio-volume.sh │ │ │ ├── show-channel.sh │ │ │ ├── show-config.sh │ │ │ ├── show-cursor-socket.sh │ │ │ ├── show-fg-app-info.sh │ │ │ ├── show-picture-settings.sh │ │ │ ├── show-power-state.sh │ │ │ ├── show-software-info.sh │ │ │ ├── show-sound-output.sh │ │ │ ├── show-tv-info.sh │ │ │ ├── stop-media.sh │ │ │ ├── switch-next-channel.sh │ │ │ ├── switch-previous-channel.sh │ │ │ ├── turn-off-3d.sh │ │ │ ├── turn-off-screen.sh │ │ │ ├── turn-off.sh │ │ │ ├── turn-on-3d.sh │ │ │ ├── turn-on-screen.sh │ │ │ ├── turn-on.sh │ │ │ ├── turn-volume-down.sh │ │ │ ├── turn-volume-up.sh │ │ │ └── unmute.sh │ │ └── samsung-tv/ │ │ ├── README.md │ │ ├── samsungexceptions.py │ │ ├── samsunghelper.py │ │ ├── samsungshortcuts.py │ │ ├── turn-off.template.py │ │ └── turn-on.template.py │ ├── system/ │ │ ├── Low Power Mode.sh │ │ ├── Network Info.sh │ │ ├── add-spacer-to-dock.sh │ │ ├── audio/ │ │ │ ├── airpodsbattery.sh │ │ │ ├── audio-output-switch.template.applescript │ │ │ ├── bluetooth-headphones-battery-level.template.sh │ │ │ ├── get-audio-devices.swift │ │ │ ├── get-selected-audio-device.swift │ │ │ ├── reload-coreaudio.sh │ │ │ ├── set-audio-device.swift │ │ │ ├── toggle-airpods.template.swift │ │ │ ├── toggle-mic.applescript │ │ │ └── toggle-mute-notification-sounds.applescript │ │ ├── battery-info.sh │ │ ├── bluetooth.template.applescript │ │ ├── brightness.sh │ │ ├── caffeinate-disable.sh │ │ ├── caffeinate-enable.sh │ │ ├── caffeinate-status.sh │ │ ├── caffeinate-status.swift │ │ ├── capture-fullscreen-to-clipboard.sh │ │ ├── capture-fullscreen-to-desktop.sh │ │ ├── capture-screen-selection-to-clipboard.sh │ │ ├── capture-screen-selection-to-desktop.sh │ │ ├── close-finder-windows.applescript │ │ ├── copy-availability.swift │ │ ├── copy-last-download.swift │ │ ├── copy-last-screenshot.swift │ │ ├── copy-selection-to-clipboard.applescript │ │ ├── create-new-file-in-finder.applescript │ │ ├── create-new-file.applescript │ │ ├── custom-window.applescript │ │ ├── default-browser-arc.applescript │ │ ├── default-browser-chrome.applescript │ │ ├── default-browser-chromium.applescript │ │ ├── default-browser-firefox.applescript │ │ ├── default-browser-front-most-app.applescript │ │ ├── default-browser-safari.applescript │ │ ├── delete-selected-files.sh │ │ ├── disk-free.sh │ │ ├── disk-usage.sh │ │ ├── dismiss-notifications.applescript │ │ ├── dnd-off.sh │ │ ├── dnd-on.sh │ │ ├── do-not-disturb.sh │ │ ├── dock-autohide-toggle.sh │ │ ├── dock-set-autohide.sh │ │ ├── dock-set-position.sh │ │ ├── eject-all-disks.applescript │ │ ├── empty-clipboard.sh │ │ ├── empty-trash.applescript │ │ ├── flush-dns.sh │ │ ├── inline-cpu-usage-percent.sh │ │ ├── kill-a-process-on-port.sh │ │ ├── kill-airdrop.processes.sh │ │ ├── kill-process.sh │ │ ├── largest-cpu-process.sh │ │ ├── largest-ram-process.sh │ │ ├── list-processes.rb │ │ ├── magic-keyboard-switcher/ │ │ │ ├── README.md │ │ │ └── magic-keyboard-switcher.template.sh │ │ ├── meeting_summary_script.swift │ │ ├── minimize-all-windows.applescript │ │ ├── modify-extension.sh │ │ ├── move-desktop-to-trash.applescript │ │ ├── move-downloads-to-trash.applescript │ │ ├── network-quality.sh │ │ ├── network-status.sh │ │ ├── new-email.sh │ │ ├── nightshift.sh │ │ ├── ocr.swift │ │ ├── open-folder.sh │ │ ├── open-image-from-clipboard.sh │ │ ├── open-last-download.swift │ │ ├── open-selection-with.applescript │ │ ├── otp.sh │ │ ├── paste-clipboard.sh │ │ ├── quit-all-apps.swift │ │ ├── quit-app.swift │ │ ├── rename-videos-pictures.py │ │ ├── reset-launchpad.sh │ │ ├── restart-dock.sh │ │ ├── restart-finder.sh │ │ ├── restart.applescript │ │ ├── sample-color.swift │ │ ├── save-image-from-clipboard.py │ │ ├── screensaver.applescript │ │ ├── shutdown.applescript │ │ ├── sleep-timer.applescript │ │ ├── sleep.applescript │ │ ├── toggle-battery-charging.sh │ │ ├── toggle-desktop-icons.applescript │ │ ├── toggle-desktop-widget.sh │ │ ├── toggle-ds-store.applescript │ │ ├── toggle-filename-extensions.applescript │ │ ├── toggle-flip-screen.template.applescript │ │ ├── toggle-hidden-files.applescript │ │ ├── toggle-lid-sleep.sh │ │ ├── toggle-natural-scrolling-macos15.applescript │ │ ├── toggle-natural-scrolling.applescript │ │ ├── toggle-sidecar.template.applescript │ │ ├── toggle-system-appearance.applescript │ │ ├── uninstall-with-appcleaner.applescript │ │ ├── update-scripts-command.template.py │ │ ├── vpn/ │ │ │ ├── vpn-config.sh │ │ │ ├── vpn-start.sh │ │ │ ├── vpn-status.sh │ │ │ └── vpn-stop.sh │ │ ├── vpnutil/ │ │ │ ├── vpnutil-config.template.sh │ │ │ ├── vpnutil-start.sh │ │ │ ├── vpnutil-status.sh │ │ │ ├── vpnutil-stop.sh │ │ │ └── vpnutil-toggle.sh │ │ ├── wallpaper-refresh.applescript │ │ ├── wifi-password.sh │ │ └── wifi.template.applescript │ └── web-searches/ │ ├── amazon.sh │ ├── app-store.sh │ ├── arxiv.sh │ ├── bnf-search.sh │ ├── bundlephobia.sh │ ├── caniuse.sh │ ├── check-weather.sh │ ├── clipboard-to-17track.js │ ├── crunchbase.sh │ ├── doi-clipboard.sh │ ├── doi.sh │ ├── duck-duck-go.sh │ ├── ecosia.sh │ ├── figma.sh │ ├── giphy.sh │ ├── google-maps.sh │ ├── google-search.sh │ ├── google-translate.rb │ ├── grep-app-search.sh │ ├── hunter.sh │ ├── im-feeling-ducky.sh │ ├── kinopoisk.sh │ ├── mdn.sh │ ├── mozilla-developer-network.sh │ ├── njt.sh │ ├── npmjs.sh │ ├── npms.sh │ ├── opensecrets.sh │ ├── pkg-go-dev.sh │ ├── postgresql.sh │ ├── pub-search.sh │ ├── repo.sh │ ├── rust-crate.sh │ ├── search-cdnjs.sh │ ├── search-coinmarketcap.sh │ ├── search-emojipedia.sh │ ├── search-gender-in-chosic.applescript │ ├── search-github.sh │ ├── search-hacker-news.sh │ ├── search-imdb.sh │ ├── search-in-baidu.sh │ ├── search-in-bilibili.sh │ ├── search-in-devhints.sh │ ├── search-in-dndbeyond.sh │ ├── search-in-jingdong.sh │ ├── search-in-taobao.sh │ ├── search-in-wikipedia.sh │ ├── search-in-zhihu.sh │ ├── search-linkedin.sh │ ├── search-netflix.sh │ ├── search-php-docs.sh │ ├── search-pypi.sh │ ├── search-python3-docs.sh │ ├── search-rust-docs.sh │ ├── search-script-command-marketplace.sh │ ├── search-swift-github.sh │ ├── search-unsplash.sh │ ├── search-wpengine-installs.sh │ ├── swift-package-index.sh │ ├── translate-with-baidu.template.sh │ ├── translate-with-google.template.sh │ ├── twitter-search.sh │ ├── unfurl.sh │ ├── wayback-machine.sh │ ├── wordpress/ │ │ ├── search-wordpress-docs.sh │ │ ├── wordpress-classes-reference.sh │ │ ├── wordpress-cli-command.sh │ │ ├── wordpress-functions-reference.sh │ │ └── wordpress-hooks-reference.sh │ ├── wpengine-install.sh │ ├── yandex-search.sh │ └── youtube.sh ├── documentation/ │ ├── ARGUMENTS.md │ └── OUTPUTMODES.md └── templates/ ├── script-command.template.applescript ├── script-command.template.cs ├── script-command.template.js ├── script-command.template.php ├── script-command.template.py ├── script-command.template.rb ├── script-command.template.sh └── script-command.template.swift