-
I'm trying to integrate a CLI to-do managing app Taskwarrior using
It seems lengthy because I'm using absolute paths everywhere just in case, but actually the specifics of this |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
The https://github.com/termux/termux-app#debugging Also check differences for plugin background commands. https://github.com/termux/termux-widget/#termux-environment |
Beta Was this translation helpful? Give feedback.
Solved! Apparently ALL scripts that are called within the
termux-notification
environment must have absolute shebangs. Since this hook is also just a script, changing#!/bin/bash
to#!/data/data/com.termux/files/usr/bin/bash
resolved the issue.I should've spotted it much earlier, however the absence of errors in logs and cryptic error messages threw me off a bit. Appreciate your help @agnostic-apollo !