1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 06:17:34 +00:00
This commit is contained in:
Steffo 2024-09-26 06:43:25 +02:00
parent 9e98f56151
commit 5d4cf5202f
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -10,12 +10,21 @@ complete \
--long-option="title" \ --long-option="title" \
--description="Set title" --description="Set title"
function __ntfy_complete_priorities
echo max \t 'Really long vibration bursts, default notification sound with a pop-over notification.'
echo high \t 'Long vibration burst, default notification sound with a pop-over notification.'
echo default \t 'Short default vibration and sound. Default notification behavior.'
echo low \t 'No vibration or sound. Notification will not visibly show up until notification drawer is pulled down.'
echo min \t 'No vibration or sound. The notification will be under the fold in Other notifications.'
end
complete \ complete \
--command='ntfy' \ --command='ntfy' \
--short-option="p" \ --short-option="p" \
--long-option="priority" \ --long-option="priority" \
--description="Set priority" \ --description="Set priority" \
--arguments='urgent high default low min' --no-files \
--arguments='(__ntfy_complete_priorities)'
complete \ complete \
--command='ntfy' \ --command='ntfy' \