Notification replace #234
|
I got the point that we can replace notification using the id where as in mako or dunst I can replace them using tag Now I would like to use something like this as I use notification manager to show my volume percentage |
Answered by
ErikReider
Mar 14, 2023
Replies: 1 comment 1 reply
|
There's something like this builtin which uses a more "official" notification hint. Here's a loop that counts up to 100 :) seq 100 | while read number; do
notify-send -h int:value:$number -h string:synchronous:my-progress "Progress"
sleep 0.3
done |
1 reply
Answer selected by
ErikReider
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's something like this builtin which uses a more "official" notification hint.
Here's a loop that counts up to 100 :)