Skip to content

Instantly share code, notes, and snippets.

@bryandh
Last active May 8, 2020 08:31
Show Gist options
  • Save bryandh/cc346444c333f55b86777d88599ff556 to your computer and use it in GitHub Desktop.
Save bryandh/cc346444c333f55b86777d88599ff556 to your computer and use it in GitHub Desktop.
Commands
// Lists the top-level global NPM packages
npm ls -g --depth=0
// Restart bluetooth service on Mac
sudo launchctl stop com.apple.blued
sudo launchctl start com.apple.blued
// Disable press-and-hold on Mac, essentially disabling the hold-to-select-special-character-version-of-letter
// Can be undone by using the same command with -bool true
defaults write -g ApplePressAndHoldEnabled -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment