Add /Application symlink to macOS DMG

diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbcae25..0eb1c00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@
 ### Added
 
 - Terminal escape bindings with combined modifiers for Delete and Insert
+- /Applications symlink into OS X DMG for easier installation
 
 ### Fixed
 
diff --git a/Makefile b/Makefile
index 4990e5e..8fde17b 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@
 dmg: | $(DMG_NAME) ## Pack Alacritty.app into .dmg
 $(DMG_NAME): $(APP_NAME)
 	@echo "Packing disk image..."
+	@ln -s /Applications $(DMG_DIR)/Applications
 	@hdiutil create $(DMG_DIR)/$(DMG_NAME) \
 		-volname "Alacritty" \
 		-fs HFS+ \