b4n left a comment (geany/geany#4298) @etkaar yeah I guess it should be enough… could you maybe try to log the environment Geany receives?
You could use a wrapper script, something like this maybe (assuming installing to */usr/local/*, change this as needed): ```console $ sudo mv /usr/local/bin/geany /usr/local/bin/geany.real $ cat <<EOF | sudo tee /usr/local/bin/geany #!/bin/sh exec >>/tmp/geany.log 2>&1 date # log the start date env # output the environment /usr/local/bin/geany.real "$@" EOF $ sudo chmod 0755 /usr/local/bin/geany ``` -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/4298#issuecomment-2909346045 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/4298/[email protected]>
