Browse Source

feat: add a few more keyboard shortcuts

Kyle P Davis 5 years ago
parent
commit
be76d03f50
1 changed files with 5 additions and 1 deletions
  1. 5 1
      install.sh

+ 5 - 1
install.sh

@@ -54,5 +54,9 @@ if [ "$OS" = "Darwin" ]; then
 	defaults write -globalDomain AppleKeyboardUIMode -int 3
 	defaults write -globalDomain AppleKeyboardUIMode -int 3
 	# Setup things for SystemPreferences->Keyboard->Shortcuts->App Shortcuts
 	# Setup things for SystemPreferences->Keyboard->Shortcuts->App Shortcuts
 	defaults write -globalDomain NSUserKeyEquivalents -dict \
 	defaults write -globalDomain NSUserKeyEquivalents -dict \
-		'\033Window\033Zoom' '@~^m'
+		'\033Window\033Zoom' '@~^m' \
+		'\033Window\033Move Window to Left Side of Screen' '@~^\U2190' \
+		'\033Window\033Move Window to Right Side of Screen' '@~^\U2192' \
+		'\033Window\033Tile Window to Left of Screen' '@~^$\U2190' \
+		'\033Window\033Tile Window to Right of Screen' '@~^$\U2192'
 fi
 fi