Created
July 4, 2019 18:03
-
-
Save tehprofessor/9137a7fdaeb92add572d580c7ae8a8a7 to your computer and use it in GitHub Desktop.
Karabiner Elements "Fix-It" for Catalina Beta
This file contains 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/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