#!/bin/sh

# is XML attr supported?
if gfxattr -x -g / test 2>&1 |
        egrep "^gfxattr: (unknown|invalid) option -- ('x'|x)" >/dev/null
then
	false
else
	true
fi
