Skip to content

Instantly share code, notes, and snippets.

View larralapid's full-sized avatar
🥠

larra larralapid

🥠
  • Cincinnati, OH
View GitHub Profile

Reference: List of iOS App URL Scheme Names & Paths for Shortcuts

Author:

Saved on: 2021-03-19, 15:52

If you've ever customized your app icons or played around with Shortcuts (previously called Workflow), you probably know how important URL scheme names are. Nearly all iOS apps assign themselves one of these names, and you need to know them if you want to add custom icons to your home screen or create a Shortcuts workflow that opens an app on your iPhone up. Finding the URL scheme name, also known as a URI scheme, for a particular app is not easy. First, you have to download the IPA file for the app — a difficult task since the iTunes 12.7 update removed iOS apps from it. When you finally find the IPA, you have to turn it into a ZIP file, show the contents of the app package, then hunt for the specific PLIST file that contains the URL schemes. It's a lot of work.

This example

@larralapid
larralapid / iOS Shortcuts Catalog.md
Created February 13, 2025 10:58 — forked from brucebentley/iOS Shortcuts Catalog.md
This is a public resource designed to help people get started with Siri Shortcuts & the Shortcuts app. It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Bruce's iOS Shortcut Catalog

Hello and welcome to my Shortcuts Catalog!

This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.

It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Enjoy!

@larralapid
larralapid / README-Template.md
Created January 30, 2025 21:24 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@larralapid
larralapid / gist:66190d0c9fa9603213d623d92dfcb623
Created January 30, 2025 01:06
install multiple gh cli extensions
for repo in redraw/gh-install vilmibm/gh-screensaver korosuke613/gh-user-stars KOBA789/gh-sql kawarimidoll/gh-graph chelnak/gh-changelog gitkraken/gh-gk LangLangBart/gh-find-code samcoe/gh-repo-explore nektos/gh-act aymanbagabas/gh-stars sayanarijit/gh-xplr andyfeller/gh-dependency-report jongio/gh-setup-git-credential-helper samcoe/gh-triage twelvelabs/gh-repo-config despreston/gh-worktree maggie-j-liu/gh-star mislav/gh-delete-repo cschleiden/gh-actionlint jkeech/gh-shell LangLangBart/gh-look gh640/gh-repo-list andyfeller/gh-publicize hexium310/gh-vulns ghcli/gh-commit meiji163/gh-search heaths/gh-template speedyleion/gh-difftool chelnak/gh-environments eggplants/gh-repos gizmo385/gh-lazy lakuapik/gh-inspire k1LoW/gh-do AyogoHealth/gh-provision-envs Omochice/gh-fzgist mtrontz-the-dev/gh-ost katiem0/gh-export-secrets joshuaNathaniel/gh-project-manager micnncim/gh-project trunklabs/gh-contribution-mate balvig/gh-start kenchan/gh-furik sarumaj/gh-gr yanskun/gh-page r7kamura/gh-diary nicholasoxford/gh-submodule-
@larralapid
larralapid / .bashrc
Created January 11, 2025 22:52
inspo
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@larralapid
larralapid / script.js
Last active November 28, 2024 03:06
retroactive m2m records
var m2mArray = [];
var mrvs = new GlideRecord('sc_multi_row_question_answer');
mrvs.addQuery('item_option_new','8bf708ce1bf0f11042911f861a4bcb86');
mrvs.query();
while (mrvs.next()){
var m2m = {};
m2m.ritm = mrvs.getValue('parent_id');
m2m.productSysId = mrvs.getValue('value');
@larralapid
larralapid / GlideQuery.js
Created November 13, 2024 22:34
GlideQuery.js
/**
* Main GlideQuery class used to build and execute queries.
* @example
* var query = new GlideQuery('sys_user');
* @constructor
* @param {string} table Table to query
* @param {Array} [plan] Contains an array of Step objects describing the
* query. Generally only used by GlideQuery itself.
*/
function GlideQuery(table, plan) {
@larralapid
larralapid / LazyVIM.md
Created October 22, 2024 03:25 — forked from danielkec/LazyVIM.md
LazyVIM

Default shortcuts

Ctrl+h        select file tree
Ctrl+l        select file editor
Shift+h       left editor tab
Shift+l       right editor tab
Alt+j         move current line up
Alt+k         move current line down
double space  filename search(telescope) - `Ctrl+d` and `Ctrl+u` to scroll preview
@larralapid
larralapid / LazyVIM.md
Created October 22, 2024 03:25 — forked from danielkec/LazyVIM.md
LazyVIM

Default shortcuts

Ctrl+h        select file tree
Ctrl+l        select file editor
Shift+h       left editor tab
Shift+l       right editor tab
Alt+j         move current line up
Alt+k         move current line down
double space  filename search(telescope) - `Ctrl+d` and `Ctrl+u` to scroll preview
@larralapid
larralapid / OrganizationUtils Script Include.js
Created July 12, 2024 01:21
GlideAjax in onChange Client Script
var OrganizationUtils = Class.create();
OrganizationUtils.prototype = Object.extendsObject(AbstractAjaxProcessor, {
getTitleSubtitles: function(title) {
var subArray = [];
var titleSysId = title || this.getParameter('titleSysId');
var subs = new GlideRecord('u_location_subtitles');
subs.addQuery('u_job_title', titleSysId);
subs.addQuery('u_active', true);
subs.query();