|
|
|
|
|
by speakspokespok
732 days ago
|
|
Why is this response being marked down? Just off the top of my head Sublime and VSCODE do this. I prefer `/usr/local/bin` since your package manager won't touch it. Sublime: /usr/bin/subl:
#!/bin/sh
exec /opt/sublime_text/sublime_text "$@"
VSCODE: /usr/bin/code:
...
# Launch
exec /opt/visual-studio-code/bin/code "$@" $CODE_USER_FLAGS
|
|