diff options
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | ilua-wrapper.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -112,3 +112,5 @@ configuration. It might also be viable to do our own graphics via Cairo, which allows SVG output in contrast to Tk canvases. +* Automatically detect whether terminal supports the Kitty graphics protocol: + https://sw.kovidgoyal.net/kitty/graphics-protocol/#querying-support-and-available-transmission-mediums diff --git a/ilua-wrapper.sh b/ilua-wrapper.sh index b5494f8..51bf382 100755 --- a/ilua-wrapper.sh +++ b/ilua-wrapper.sh @@ -4,5 +4,5 @@ # Also, it's useful as you do not have to change the directory before invoking ILua. # Thirdly, if you create a symbolic link to lua in a Python environment of ILua, this invoke # Applause by default and it will even work with Jupyter Notebooks without further tweaks. -cd $(dirname $(readlink -m "$0")) +cd $(dirname $(readlink "$0")) exec ./applause $APPLAUSE_OPTS "$@" |