mirror of
https://github.com/alacritty/alacritty.git
synced 2025-10-30 23:36:53 -04:00
Add tiny wrapper to start from '$HOME'
This commit is contained in:
parent
dc72b1324f
commit
2f0e31888f
3 changed files with 10 additions and 4 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<key>CFBundleDisplayName</key>
|
||||
<string>Alacritty</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>alacritty</string>
|
||||
<string>launcher</string>
|
||||
<!-- <key>CFBundleIdentifier</key> -->
|
||||
<!-- <string>alacritty</string> -->
|
||||
<key>CFBundleName</key>
|
||||
|
|
|
|||
6
assets/osx/Alacritty.app/Contents/MacOS/launcher
Executable file
6
assets/osx/Alacritty.app/Contents/MacOS/launcher
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
BIN_DIR=$(dirname $0)
|
||||
|
||||
cd "$HOME"
|
||||
exec "$BIN_DIR/alacritty" "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue