Add note about creating launcher app for running kitty from source
This commit is contained in:
parent
51ac78f74d
commit
5f75becc5a
1 changed files with 10 additions and 0 deletions
|
|
@ -425,6 +425,16 @@ make
|
|||
python3 .
|
||||
```
|
||||
|
||||
You can also create a shell script to run kitty:
|
||||
|
||||
```
|
||||
#!/bin/sh
|
||||
exec python3 /path/to/kitty/source/dir
|
||||
```
|
||||
|
||||
And using something like link:https://mathiasbynens.be/notes/shell-script-mac-apps[app-wrapper-for-shell-script]
|
||||
you can create a simple launcher app to run the shell script.
|
||||
|
||||
If you only want to make some small changes to a python file, you can do that
|
||||
and simply replace the corresponding file inside an existing kitty.app. (Note
|
||||
that kitty.app will contain `.pyo` files which are compiled versions of `.py`
|
||||
|
|
|
|||
Loading…
Reference in a new issue