Skip to content

Instantly share code, notes, and snippets.

@dgellow
Created April 2, 2017 20:37
Show Gist options
  • Save dgellow/bf5e36cb1b95ef890d65a26ce8ed293a to your computer and use it in GitHub Desktop.
Save dgellow/bf5e36cb1b95ef890d65a26ce8ed293a to your computer and use it in GitHub Desktop.
macOS custom keyboard layout
#!/bin/bash
DIR="~/Library/Keyboard Layouts"
ROOT_URL="https://github.com/dgellow/config/releases/download/v1"
FILES=(dgellow-bepow.bundle dgellow-bepow.keylayout fr-dvorak-bepo.bundle)
mkdir -p "${DIR}"
cd "${DIR}"
for f in ${FILES}
do
curl -L "${ROOT_URL}/${f}" > "${f}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment