ENVVARS docs update (re: FontConfig vars)
This commit is contained in:
parent
cab4394173
commit
46fb261e84
16 changed files with 495 additions and 31 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
May 2, 2025
|
June 8, 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -41,6 +41,8 @@ indirectly by the libraries that it utilizes.
|
||||||
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
||||||
exports drawings and GIFs to "$HOME".
|
exports drawings and GIFs to "$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -81,6 +83,7 @@ The following are a few of the environment variables supported by Simple
|
||||||
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
||||||
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
||||||
may be useful to users of Tux Paint.
|
may be useful to users of Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
||||||
|
|
@ -99,3 +102,26 @@ may be useful to users of Tux Paint.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
May 2, 2025 </p>
|
June 8, 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Display-related environment variables </h2>
|
Display-related environment variables </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint.
|
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.35
|
versión 0.9.36
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
mayo 2, 2025
|
junio 8, 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -41,6 +41,8 @@ indirectly by the libraries that it utilizes.
|
||||||
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
||||||
exports drawings and GIFs to "$HOME".
|
exports drawings and GIFs to "$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -81,6 +83,7 @@ The following are a few of the environment variables supported by Simple
|
||||||
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
||||||
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
||||||
may be useful to users of Tux Paint.
|
may be useful to users of Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
||||||
|
|
@ -99,3 +102,26 @@ may be useful to users of Tux Paint.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mayo 2, 2025 </p>
|
junio 8, 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Display-related environment variables </h2>
|
Display-related environment variables </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint.
|
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.35
|
version 0.9.36
|
||||||
Documentation sur les variables d'environnement
|
Documentation sur les variables d'environnement
|
||||||
|
|
||||||
Copyright © 2021-2025 by divers contributeurs; voir AUTHORS.txt.
|
Copyright © 2021-2025 by divers contributeurs; voir AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
mai 2, 2025
|
juin 8, 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -45,6 +45,8 @@ soit indirectement par le biais des bibliothèques qu'il utilise.
|
||||||
trouvée, Tux Paint exporte simplement les dessins et GIF animés vers
|
trouvée, Tux Paint exporte simplement les dessins et GIF animés vers
|
||||||
"$HOME".
|
"$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -88,6 +90,7 @@ Ce qui suit donne quelques variables d'environnement supportées par Simple
|
||||||
DirectMedia Layer (libSDL) — que Tux Paint utilise pour l'affichage des
|
DirectMedia Layer (libSDL) — que Tux Paint utilise pour l'affichage des
|
||||||
dessins, pour jouer des sons et traiter les saisies de la souris, du clavier et
|
dessins, pour jouer des sons et traiter les saisies de la souris, du clavier et
|
||||||
du joystick — et qui peuvent être utiles aux utilisateurs de Tux Paint.
|
du joystick — et qui peuvent être utiles aux utilisateurs de Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Spécifie si Tux Paint autorise l'utilisation d'un économiseur d'écran. Peut
|
Spécifie si Tux Paint autorise l'utilisation d'un économiseur d'écran. Peut
|
||||||
|
|
@ -107,3 +110,26 @@ du joystick — et qui peuvent être utiles aux utilisateurs de Tux Paint.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mai 2, 2025 </p>
|
juin 8, 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
Sur Linux et d'autres plateformes où les standards du XDG (X Desktop Group) sont appliqués, c'est l'endroit où se trouvent les fichiers de configuration de l'utilisateur. Plus précisément, c'est où trouver "<code>user-dirs.dirs</code>", où le "<code>XDG_PICTURES_DIR</code>" devrait être défini. Il est utilisé pour exporter les dessins et GIF animés. En général, il est égal à quelque chose comme "<code>$HOME/Pictures/</code>". S'il n'est pas spécifié, Tux Paint vérifie le répertoire "<code>$HOME/.config/</code>". Si la configuration ne peut être trouvée, Tux Paint exporte simplement les dessins et GIF animés vers "<code>$HOME</code>". </p>
|
Sur Linux et d'autres plateformes où les standards du XDG (X Desktop Group) sont appliqués, c'est l'endroit où se trouvent les fichiers de configuration de l'utilisateur. Plus précisément, c'est où trouver "<code>user-dirs.dirs</code>", où le "<code>XDG_PICTURES_DIR</code>" devrait être défini. Il est utilisé pour exporter les dessins et GIF animés. En général, il est égal à quelque chose comme "<code>$HOME/Pictures/</code>". S'il n'est pas spécifié, Tux Paint vérifie le répertoire "<code>$HOME/.config/</code>". Si la configuration ne peut être trouvée, Tux Paint exporte simplement les dessins et GIF animés vers "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Variables d'environnement en rapport avec l'affichage </h2>
|
Variables d'environnement en rapport avec l'affichage </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Ce qui suit donne quelques variables d'environnement supportées par Simple DirectMedia Layer (libSDL) — que Tux Paint utilise pour l'affichage des dessins, pour jouer des sons et traiter les saisies de la souris, du clavier et du joystick — et qui peuvent être utiles aux utilisateurs de Tux Paint.
|
Ce qui suit donne quelques variables d'environnement supportées par Simple DirectMedia Layer (libSDL) — que Tux Paint utilise pour l'affichage des dessins, pour jouer des sons et traiter les saisies de la souris, du clavier et du joystick — et qui peuvent être utiles aux utilisateurs de Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.35
|
versión 0.9.36
|
||||||
Documentación de variábeis de contorno
|
Documentación de variábeis de contorno
|
||||||
|
|
||||||
Copyright © 2021-2025 by varios colaboradores; see AUTHORS.txt.
|
Copyright © 2021-2025 by varios colaboradores; see AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2 de Maio de 2025
|
8 de Xuño de 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -42,6 +42,8 @@ indirectamente polas bibliotecas que emprega.
|
||||||
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
||||||
exports drawings and GIFs to "$HOME".
|
exports drawings and GIFs to "$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -83,6 +85,7 @@ A seguir amósanse algunhas das variábeis de contorno compatíbeis con Simple
|
||||||
DirectMedia Layer (libSDL) — que Tux Paint utiliza para amosar gráficos,
|
DirectMedia Layer (libSDL) — que Tux Paint utiliza para amosar gráficos,
|
||||||
reproducir sons e recibir entrada do rato, teclado e joystick — e que poden ser
|
reproducir sons e recibir entrada do rato, teclado e joystick — e que poden ser
|
||||||
útiles para os usuarios de Tux Paint.
|
útiles para os usuarios de Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Especifica se Tux Paint debería permitir a execución dun protector de
|
Especifica se Tux Paint debería permitir a execución dun protector de
|
||||||
|
|
@ -102,3 +105,26 @@ reproducir sons e recibir entrada do rato, teclado e joystick — e que poden se
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
2 de Maio de 2025 </p>
|
8 de Xuño de 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Variábeisbles de contorno relacionadas co que se amosa </h2>
|
Variábeisbles de contorno relacionadas co que se amosa </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
A seguir amósanse algunhas das variábeis de contorno compatíbeis con Simple DirectMedia Layer (libSDL) — que Tux Paint utiliza para amosar gráficos, reproducir sons e recibir entrada do rato, teclado e joystick — e que poden ser útiles para os usuarios de Tux Paint.
|
A seguir amósanse algunhas das variábeis de contorno compatíbeis con Simple DirectMedia Layer (libSDL) — que Tux Paint utiliza para amosar gráficos, reproducir sons e recibir entrada do rato, teclado e joystick — e que poden ser útiles para os usuarios de Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.35
|
version 0.9.36
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
Copyright © 2021-2025 by various contributors; see AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
maí 2, 2025
|
júní 8, 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -41,6 +41,8 @@ indirectly by the libraries that it utilizes.
|
||||||
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
||||||
exports drawings and GIFs to "$HOME".
|
exports drawings and GIFs to "$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -81,6 +83,7 @@ The following are a few of the environment variables supported by Simple
|
||||||
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
||||||
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
||||||
may be useful to users of Tux Paint.
|
may be useful to users of Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
||||||
|
|
@ -99,3 +102,26 @@ may be useful to users of Tux Paint.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
maí 2, 2025 </p>
|
júní 8, 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Display-related environment variables </h2>
|
Display-related environment variables </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint.
|
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
バージョン 0.9.35
|
バージョン 0.9.36
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2025 by various contributors; AUTHORS.txt 参照.
|
Copyright © 2021-2025 by various contributors; AUTHORS.txt 参照.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2025年5月 2日
|
2025年6月 8日
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -41,6 +41,8 @@ indirectly by the libraries that it utilizes.
|
||||||
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
"$HOME/.config/". If the configuration cannot be found, Tux Paint simply
|
||||||
exports drawings and GIFs to "$HOME".
|
exports drawings and GIFs to "$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -81,6 +83,7 @@ The following are a few of the environment variables supported by Simple
|
||||||
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics,
|
||||||
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
playing sounds, and receiving mouse, keyboard, and joystick input — and which
|
||||||
may be useful to users of Tux Paint.
|
may be useful to users of Tux Paint.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
Specifies whether Tux Paint should allow a screensaver to run. Can be set
|
||||||
|
|
@ -99,3 +102,26 @@ may be useful to users of Tux Paint.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
2025年5月 2日 </p>
|
2025年6月 8日 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. Specifically, where to find "<code>user-dirs.dirs</code>", where the "<code>XDG_PICTURES_DIR</code>" might be defined. It is used for exporting drawings and animated GIFs. Generally it's set to something like "<code>$HOME/Pictures/</code>". If not specified, Tux Paint checks in the directory "<code>$HOME/.config/</code>". If the configuration cannot be found, Tux Paint simply exports drawings and GIFs to "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Display-related environment variables </h2>
|
Display-related environment variables </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint.
|
The following are a few of the environment variables supported by Simple DirectMedia Layer (libSDL) — which Tux Paint utilizes for displaying graphics, playing sounds, and receiving mouse, keyboard, and joystick input — and which may be useful to users of Tux Paint. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.35
|
version 0.9.36
|
||||||
Dokumentim Ndryshoresh të Mjedisit
|
Dokumentim Ndryshoresh të Mjedisit
|
||||||
|
|
||||||
Të drejta kopjimi © 2021-2025 nga kontribues të ndryshëm; shihni AUTHORS.txt.
|
Të drejta kopjimi © 2021-2025 nga kontribues të ndryshëm; shihni AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2 maj 2025
|
8 qershor 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -42,6 +42,8 @@ tërthorazi nga bibliotekat që përdor.
|
||||||
kontrollon te drejtoria “$HOME/.config/”. Nëse s’gjendet dot formësimi, Tux
|
kontrollon te drejtoria “$HOME/.config/”. Nëse s’gjendet dot formësimi, Tux
|
||||||
Paint-i thjesht eksporton vizatime dhe GIF-e te “$HOME”.
|
Paint-i thjesht eksporton vizatime dhe GIF-e te “$HOME”.
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -84,6 +86,7 @@ Layer (libSDL) — të cilat Tux Paint-i i përdorr për të shfaqur elementë
|
||||||
grafikë, për të luajtur tinguj dhe për të marrë sinjale për miun, tastierën dhe
|
grafikë, për të luajtur tinguj dhe për të marrë sinjale për miun, tastierën dhe
|
||||||
joystick-un — dhe që mund të jenë të dobishme për për përdorues të Tux
|
joystick-un — dhe që mund të jenë të dobishme për për përdorues të Tux
|
||||||
Paint-it.
|
Paint-it.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Përcakton nëse Tux Paint-i duhet të lejojë xhirimin e një kursyesi ekrani.
|
Përcakton nëse Tux Paint-i duhet të lejojë xhirimin e një kursyesi ekrani.
|
||||||
|
|
@ -104,3 +107,26 @@ Paint-it.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
2 maj 2025 </p>
|
8 qershor 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
Në Linux dhe platforma të tjera ku përdoren standardet e Grupit Desktopi X, vendndodhja e kartelave të formësimeve të përdoruesit. Hollësisht, ku të gjendet “<code>user-dirs.dirs</code>”, ku “<code>XDG_PICTURES_DIR</code>” duhet përcaktuar. Përdoret për eksportim vizatimesh dhe GIF-esh të animuar. Përgjithësisht, caktohet diçka e ngjashme me “<code>$HOME/Pictures/</code>”. Në mos u përcaktoftë, Tux Paint kontrollon te drejtoria “<code>$HOME/.config/</code>”. Nëse s’gjendet dot formësimi, Tux Paint-i thjesht eksporton vizatime dhe GIF-e te “<code>$HOME</code>”. </p>
|
Në Linux dhe platforma të tjera ku përdoren standardet e Grupit Desktopi X, vendndodhja e kartelave të formësimeve të përdoruesit. Hollësisht, ku të gjendet “<code>user-dirs.dirs</code>”, ku “<code>XDG_PICTURES_DIR</code>” duhet përcaktuar. Përdoret për eksportim vizatimesh dhe GIF-esh të animuar. Përgjithësisht, caktohet diçka e ngjashme me “<code>$HOME/Pictures/</code>”. Në mos u përcaktoftë, Tux Paint kontrollon te drejtoria “<code>$HOME/.config/</code>”. Nëse s’gjendet dot formësimi, Tux Paint-i thjesht eksporton vizatime dhe GIF-e te “<code>$HOME</code>”. </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Ndryshore mjedisi të lidhura me ekranin </h2>
|
Ndryshore mjedisi të lidhura me ekranin </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Sa vijon janë pak nga ndryshoret e mjedisit të mbuluara nga Simple DirectMedia Layer (libSDL) — të cilat Tux Paint-i i përdorr për të shfaqur elementë grafikë, për të luajtur tinguj dhe për të marrë sinjale për miun, tastierën dhe joystick-un — dhe që mund të jenë të dobishme për për përdorues të Tux Paint-it.
|
Sa vijon janë pak nga ndryshoret e mjedisit të mbuluara nga Simple DirectMedia Layer (libSDL) — të cilat Tux Paint-i i përdorr për të shfaqur elementë grafikë, për të luajtur tinguj dhe për të marrë sinjale për miun, tastierën dhe joystick-un — dhe që mund të jenë të dobishme për për përdorues të Tux Paint-it. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.35
|
version 0.9.36
|
||||||
Dokumentation om miljövariabler
|
Dokumentation om miljövariabler
|
||||||
|
|
||||||
Copyright © 2021-2025 av olika bidragsgivare; se AUTHORS.txt.
|
Copyright © 2021-2025 av olika bidragsgivare; se AUTHORS.txt.
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
maj 2, 2025
|
juni 8, 2025
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -42,6 +42,8 @@ genom de bibliotek som den använder.
|
||||||
hittas exporterar Rita med Tux helt enkelt ritningar och GIF-filer till
|
hittas exporterar Rita med Tux helt enkelt ritningar och GIF-filer till
|
||||||
"$HOME".
|
"$HOME".
|
||||||
|
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
→ XDG_DATA_HOME ←
|
→ XDG_DATA_HOME ←
|
||||||
|
|
@ -83,6 +85,7 @@ Här följer några av de miljövariabler som stöds av Simple DirectMedia Layer
|
||||||
(libSDL) - som Rita med Tux använder för att visa grafik, spela upp ljud och ta
|
(libSDL) - som Rita med Tux använder för att visa grafik, spela upp ljud och ta
|
||||||
emot mus-, tangentbords- och joystickinmatning - och som kan vara användbara
|
emot mus-, tangentbords- och joystickinmatning - och som kan vara användbara
|
||||||
för användare av Rita med Tux.
|
för användare av Rita med Tux.
|
||||||
|
|
||||||
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
→ SDL_VIDEO_ALLOW_SCREENSAVER ←
|
||||||
|
|
||||||
Anger om Rita med Tux ska tillåta att en skärmsläckare körs. Kan sättas
|
Anger om Rita med Tux ska tillåta att en skärmsläckare körs. Kan sättas
|
||||||
|
|
@ -103,3 +106,26 @@ för användare av Rita med Tux.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Font-related environment variables ###
|
||||||
|
|
||||||
|
Tux Paint uses FontConfig (via Pango, in turn via SDL_Pango) to find fonts that
|
||||||
|
may be used by the "Text" and "Label" tools.
|
||||||
|
|
||||||
|
→ FONTCONFIG_PATH ←
|
||||||
|
|
||||||
|
Specifies where FontConfig should look for a "fonts.conf" configuration
|
||||||
|
file which Tux Paint examines for any "<dir>" tags, which it then uses to
|
||||||
|
search for fonts that could be used by the tools.
|
||||||
|
|
||||||
|
# Note: On Apple macOS, this is forced to be the "Resources/etc" folder,
|
||||||
|
inside the Tux Paint application itself.
|
||||||
|
# Note: On Apple iOS, this is forced to be the "etc" folder, inside the
|
||||||
|
Tux Paint application itself.
|
||||||
|
|
||||||
|
|
||||||
|
→ XDG_CONFIG_HOME ←
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used,
|
||||||
|
the location of the user's configuration files. It is used to find a
|
||||||
|
user-specific "fonts.conf" configuration file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
maj 2, 2025 </p>
|
juni 8, 2025 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
På Linux och andra plattformar där X Desktop Group-standarderna används, platsen för användarens konfigurationsfiler. Specifikt var man hittar "<code>user-dirs.dirs</code>", var "<code>XDG_PICTURES_DIR</code>" kan definieras. Den används för att exportera ritningar och animerade GIF-filer. I allmänhet är den inställd på något i stil med "<code>$HOME/Pictures/</code>". Om inget anges kontrollerar Rita med Tux i katalogen "<code>$HOME/.config/</code>". Om konfigurationen inte kan hittas exporterar Rita med Tux helt enkelt ritningar och GIF-filer till "<code>$HOME</code>". </p>
|
På Linux och andra plattformar där X Desktop Group-standarderna används, platsen för användarens konfigurationsfiler. Specifikt var man hittar "<code>user-dirs.dirs</code>", var "<code>XDG_PICTURES_DIR</code>" kan definieras. Den används för att exportera ritningar och animerade GIF-filer. I allmänhet är den inställd på något i stil med "<code>$HOME/Pictures/</code>". Om inget anges kontrollerar Rita med Tux i katalogen "<code>$HOME/.config/</code>". Om konfigurationen inte kan hittas exporterar Rita med Tux helt enkelt ritningar och GIF-filer till "<code>$HOME</code>". </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint also uses this to find FontConfig configuration files; see below. </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -180,7 +183,8 @@
|
||||||
Displayrelaterade miljövariabler </h2>
|
Displayrelaterade miljövariabler </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Här följer några av de miljövariabler som stöds av Simple DirectMedia Layer (libSDL) - som Rita med Tux använder för att visa grafik, spela upp ljud och ta emot mus-, tangentbords- och joystickinmatning - och som kan vara användbara för användare av Rita med Tux.
|
Här följer några av de miljövariabler som stöds av Simple DirectMedia Layer (libSDL) - som Rita med Tux använder för att visa grafik, spela upp ljud och ta emot mus-, tangentbords- och joystickinmatning - och som kan vara användbara för användare av Rita med Tux. </p>
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>
|
||||||
|
|
@ -199,6 +203,34 @@
|
||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Font-related environment variables </h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tux Paint uses <cite>FontConfig</cite> (via <cite>Pango</cite>, in turn via <cite>SDL_Pango</cite>) to find fonts that may be used by the "Text" and "Label" tools. </p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<code>FONTCONFIG_PATH</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specifies where <cite>FontConfig</cite> should look for a "<code>fonts.conf</cite>" configuration file which Tux Paint examines for any "<code><dir></code>" tags, which it then uses to search for fonts that could be used by the tools. </p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Note: On Apple macOS, this is forced to be the "<code>Resources/etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
<li>
|
||||||
|
Note: On Apple iOS, this is forced to be the "<code>etc</code>" folder, inside the Tux Paint application itself. </li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<code>XDG_CONFIG_HOME</code>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
On Linux and other platforms where the X Desktop Group standards are used, the location of the user's configuration files. It is used to find a user-specific "<code>fonts.conf</code>" configuration file. </dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue