Skip to content

Instantly share code, notes, and snippets.

@tehprofessor
Created July 4, 2019 18:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tehprofessor/9137a7fdaeb92add572d580c7ae8a8a7 to your computer and use it in GitHub Desktop.
Save tehprofessor/9137a7fdaeb92add572d580c7ae8a8a7 to your computer and use it in GitHub Desktop.
Karabiner Elements "Fix-It" for Catalina Beta
#!/bin/sh
KARABINER_ELEMENTS_PATH="/Applications/Karabiner-Elements.app"
echo "Killing Karabiner & associated processes"
sudo pkill -f Karabiner -9 # Kills the main Karabiner UI
sudo pkill -f karabiner -9 # Kills the background processes
echo "Starting Karabiner-Elements... It may be up to a minute after opening Karabiner-Elements before your custom keys activate."
open $KARABINER_ELEMENTS_PATH # Open it back up!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment