diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-20 12:12:25 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-20 12:12:25 +0300 |
commit | 1a12f69466d29721f8fa12c92850096339088f8c (patch) | |
tree | f3a8df560f0da8c13b84fd3e252e65ce3b2527ad | |
parent | 9e0da3df9c46cf1825ecf2674cc2ef521d3a8b57 (diff) | |
download | applause2-1a12f69466d29721f8fa12c92850096339088f8c.tar.gz |
ilua-wrapper: FreeBSD compatibility
-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 "$@" |