openbsd-ports/x11/xscreensaver/files/xscreensaver-config.xsl

30 lines
1.1 KiB
XML
Raw Normal View History

<?xml version='1.0'?>
<!-- $OpenBSD: xscreensaver-config.xsl,v 1.1 2008/11/29 11:29:07 ajacoutot Exp $ -->
<!-- file originally from gnome-screensavers sources -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text" indent="no" />
<xsl:strip-space elements="*"/>
<xsl:template match="screensaver">
[Desktop Entry]
Encoding=UTF-8
Name=<xsl:value-of select="@_label" />
Comment=<xsl:value-of select="normalize-space(_description)" />
<xsl:if test="count(command/@name) != 0">
TryExec=<xsl:value-of select="normalize-space(command/@name)" />
Exec=<xsl:value-of select="normalize-space(command/@name)" /><xsl:text> </xsl:text><xsl:value-of select="normalize-space(command/@arg)" />
</xsl:if>
<xsl:if test="count(command/@name) = 0">
TryExec=<xsl:value-of select="normalize-space(@name)" />
Exec=<xsl:value-of select="normalize-space(@name)" /><xsl:text> </xsl:text><xsl:value-of select="normalize-space(command/@arg)" />
</xsl:if>
StartupNotify=false
Terminal=false
Type=Application
Categories=Screensaver;
OnlyShowIn=GNOME;
</xsl:template>
</xsl:stylesheet>