mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 16:03:00 +08:00
5 lines
212 B
Fish
5 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
|