Created
April 2, 2017 20:37
-
-
Save dgellow/bf5e36cb1b95ef890d65a26ce8ed293a to your computer and use it in GitHub Desktop.
macOS custom keyboard layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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