Skip to content

Commit

Permalink
QMK: deps and setup for QMK.
Browse files Browse the repository at this point in the history
  • Loading branch information
damncabbage committed Sep 8, 2021
1 parent d70359f commit c3f3c24
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
17 changes: 15 additions & 2 deletions macOS/Brewfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
cask_args appdir: "/Applications"

tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "dteoh/sqa"
Expand Down Expand Up @@ -73,16 +75,27 @@ brew "youtube-dl" # download (most) things

brew "terminal-notifier" # macOS notifications

brew "lazydocker" # docker + docker-compose management

brew "carthage" # MacOS dev package manager

brew "awscli" # *long sigh*

# Moonlander / QMK
tap "osx-cross/arm"
tap "osx-cross/avr"
brew "avr-gcc"
brew "arm-gcc-bin"
brew "qmk/qmk/qmk"

tap "homebrew/cask-drivers"
brew "libusb"
cask "zsa-wally" # Flashing tool

# Neovim
tap "jason0x43/homebrew-neovim-nightly"
cask "neovim-nightly"

cask_args appdir: "/Applications"

cask "iterm2"

cask "caffeine" # keep the machine awake
Expand Down
8 changes: 8 additions & 0 deletions macOS/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ prompt_to_install "CPU Temp Checker" "osx-cpu-temp" && (
git checkout 22a86f51fb1c421bafceb0aebc009bd7337982f8 && make && ./osx-cpu-temp && mv -i ./osx-cpu-temp ~/bin/
) || true

prompt_to_install "QMK (Moonlander et al)" && (
set -x;
QDIR=~/code/self/qmk_firmware
mkdir -p "$QDIR"
git clone git@github.com:damncabbage/qmk_firmware "$QDIR"
qmk setup -H ~/code/self/qmk_firmware damncabbage/qmk_firmware
) || true

prompt_to_install "macOS Preferences" && (
set -x;

Expand Down

0 comments on commit c3f3c24

Please sign in to comment.