fish-shell/share/functions/__fish_print_xdg_mimeapps.fish

5 lines
212 B
Fish
Raw Normal View History

2012-06-13 12:46:13 +00:00
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