mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-03 16:48:45 +00:00
21 lines
370 B
Fish
21 lines
370 B
Fish
set command termux-wallpaper
|
|
|
|
complete -c $command -f
|
|
|
|
complete -c $command \
|
|
-s h \
|
|
-d 'Show [h]elp'
|
|
|
|
complete -c $command \
|
|
-s f \
|
|
-d 'Specify the [f]ile of a wallpaper' \
|
|
-F -r
|
|
|
|
complete -c $command \
|
|
-s u \
|
|
-d 'Specify the [u]RL of a wallpaper' \
|
|
-F -r
|
|
|
|
complete -c $command \
|
|
-s l \
|
|
-d 'Set a wallpaper for the [l]ockscreen'
|