mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-28 12:45:13 +00:00
4 lines
212 B
Fish
4 lines
212 B
Fish
function __fish_print_xdg_mimeapps --description 'Print xdg mime applications'
|
|
find ~/.local/share/applications/ /usr/share/applications/ -name \*.desktop \( -type f -or -type l \) -printf '%P\n' | sort -u
|
|
|
|
end
|