[GH-ISSUE #44] Progress in notification via Progress: 0-100 #40

Closed
opened 2026-05-07 00:19:04 +02:00 by BreizhHardware · 1 comment

Originally created by @binwiederhier on GitHub (Dec 9, 2021).
Original GitHub issue: https://github.com/binwiederhier/ntfy/issues/44

I think it'd be super cool to be able to show a progress bar in the Android app for something that's running remotely, like a compilation, or a build process.

id=$(curl -d "Build process starting" ntfy.sh/mytopic | jq .id)
for progress in 10 20 30 40 50 60 70 80 90 100; do 
  curl -X PATCH -d "Build process running, currently ${progress}%" -H "Progress: $progress" ntfy.sh/mytopic/$id
  sleep 10
done

This entirely relies on #43, and is pretty easy once that's implemented.

Originally created by @binwiederhier on GitHub (Dec 9, 2021). Original GitHub issue: https://github.com/binwiederhier/ntfy/issues/44 I think it'd be super cool to be able to show a progress bar in the Android app for something that's running remotely, like a compilation, or a build process. ``` id=$(curl -d "Build process starting" ntfy.sh/mytopic | jq .id) for progress in 10 20 30 40 50 60 70 80 90 100; do curl -X PATCH -d "Build process running, currently ${progress}%" -H "Progress: $progress" ntfy.sh/mytopic/$id sleep 10 done ``` This entirely relies on #43, and is pretty easy once that's implemented.
Author
Owner

@binwiederhier commented on GitHub (Mar 26, 2022):

I'm closing this along with #43, thought I would have looooved to have it. It's not worth it for now

<!-- gh-comment-id:1079554369 --> @binwiederhier commented on GitHub (Mar 26, 2022): I'm closing this along with #43, thought I would have looooved to have it. It's not worth it for now
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ntfy#40
No description provided.