#! /bin/sh

XDG_DESKTOP_DIR=`xdg-user-dir DESKTOP`

for i in `ls $XDG_DESKTOP_DIR/*.desktop`
do
	gio info -a metadata $i
done
