| Server IP : 85.112.90.236 / Your IP : 192.168.1.26 Web Server : Apache System : Linux 85-112-90-236.cprapid.com 6.12.0-211.7.3.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 12:46:58 EDT 2026 x86_64 User : ftechme ( 1002) PHP Version : 8.2.32 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/help/gl/system-admin-guide/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" type="topic" style="task" id="backgrounds-extra" xml:lang="gl">
<info>
<link type="guide" xref="appearance"/>
<revision pkgversion="3.30" date="2019-02-08" status="draft"/>
<credit type="author copyright">
<name>Matthias Clasen</name>
<email>matthias.clasen@gmail.com</email>
<years>2012</years>
</credit>
<credit type="editor">
<name>Jana Svarova</name>
<email>jana.svarova@gmail.com</email>
<years>2013</years>
</credit>
<credit type="editor">
<name>Petr Kovar</name>
<email>pknbe@volny.cz</email>
<years>2019</years>
</credit>
<include xmlns="http://www.w3.org/2001/XInclude" href="legal.xml"/>
<desc>How do I make extra backgrounds available to my users?</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Fran Diéguez</mal:name>
<mal:email>frandieguez@gnome.org</mal:email>
<mal:years>2010-2023</mal:years>
</mal:credit>
</info>
<title>Engadir fondos de pantalla adicionais</title>
<p>You can make extra backgrounds available to users on your system by
following the steps below.</p>
<steps>
<title>Estabelecer fondos de pantalla adicionais</title>
<item>
<p>Create an XML file, for example <file><var>filename</var>.xml</file>.
In this file, use keys from the <sys>org.gnome.desktop.background</sys>
GSettings schema to specify extra backgrounds and their appearance.</p>
<p>Below is a list of the most frequently used keys:</p>
<table frame="top bottom" rules="all" shade="rows">
<title>Chaves de esquemas de GSettings org.gnome.desktop.background</title>
<tbody>
<tr>
<td><p>Nome da chave</p></td>
<td><p>Valores posíbeis</p></td>
<td><p>Descrición</p></td>
</tr>
<tr>
<td><p>picture-options</p></td>
<td><p>"none", "wallpaper", "centered", "scaled", "stretched", "zoom", "spanned"</p></td>
<td><p>Determines how the image set by <var>wallpaper_filename</var> is rendered.</p></td>
</tr>
<tr>
<td><p>color-shading-type</p></td>
<td><p>«horizontal», «vertical» e «sólido»</p></td>
<td><p>Como sombrear a cor de fondo.</p></td>
</tr>
<tr>
<td><p>primary-color</p></td>
<td><p>predeterminado: #023c88</p></td>
<td><p>Cor esquerda ou superior ao deseñar gradientes ou a cor sólida.</p></td>
</tr>
<tr>
<td><p>secondary-color</p></td>
<td><p>predeterminado: #5789ca</p></td>
<td><p>Cor dereita ou inferior ao deseñar gradientes, non usados para cor sólida.</p></td>
</tr>
</tbody>
</table>
<p>You can view a complete list of <sys>org.gnome.desktop.background</sys>
keys and possible values using <app>dconf-editor</app> or the <cmd>gsettings</cmd>
command-line utility. See <link xref="gsettings-browse"/> for more information.
</p>
<p>A continuación está un ficheiro de mostra <file><var>nomedeficheiro</var>.xml</file>:</p>
<code mime="application/xml"><![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
<wallpapers>
<wallpaper deleted="false">
<name>Company Background</name>
<name xml:lang="de">Firmenhintergrund</name>
<filename>/usr/local/share/backgrounds/company-wallpaper.jpg</filename>
<options>zoom</options>
<shade_type>solid</shade_type>
<pcolor>#ffffff</pcolor>
<scolor>#000000</scolor>
</wallpaper>
</wallpapers>
]]>
</code>
</item>
<item>
<p>Place the <file><var>filename</var>.xml</file> file in the
<file>/usr/share/gnome-background-properties/</file> directory.</p>
<p>Users will have the extra backgrounds available for configuration from
<guiseq><gui>Settings</gui> <gui>Background</gui></guiseq>.</p>
</item>
</steps>
<section id="backgrounds-extra-two-wallpapers">
<title>Especificar varios fondos de pantalla</title>
<p>In one configuration file, you can specify multiple
<code><wallpaper></code> elements to add more backgrounds.</p>
<p>See the following example with two <code><wallpaper></code> elements,
adding two different backgrounds:</p>
<code mime="application/xml"><![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
<wallpapers>
<wallpaper deleted="false">
<name>Company Background</name>
<name xml:lang="de">Firmenhintergrund</name>
<filename>/usr/local/share/backgrounds/company-wallpaper.jpg</filename>
<options>zoom</options>
<shade_type>solid</shade_type>
<pcolor>#ffffff</pcolor>
<scolor>#000000</scolor>
</wallpaper>
<wallpaper deleted="false">
<name>Company Background 2</name>
<name xml:lang="de">Firmenhintergrund 2</name>
<filename>/usr/local/share/backgrounds/company-wallpaper-2.jpg</filename>
<options>zoom</options>
<shade_type>solid</shade_type>
<pcolor>#ff0000</pcolor>
<scolor>#00ffff</scolor>
</wallpaper>
</wallpapers>
]]></code>
</section>
</page>