GP3 Icons and Frames (en): Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
Zeile 42: Zeile 42:
 
</gallery>
 
</gallery>
  
=== Wechseln von Extra Icons ===
+
=== Changing the extra icons ===
Beim Wechseln der Icon-Pakete ist es auch möglich, dass die entsprechenden Extra Icons angezeigt werden. Dazu müssen aber folgende Punkte beachtet werden.
+
When changing the icon package it is also possible to use the corresponding extra icons. Therefore it is important to keep the following in mind.
* Dateinamen der Icons müssen identisch sein in den verschiedenen Extra Paketen.
+
* File names of the icons must be identical in the different extra packages.
* Der Pfad zu den Iconnamen muss relativ eingegeben werden - <code>plugin_icons/bildname.png</code>.
+
* The path to the icon name must be "relative" - <code>plugin_icons/imagename.png</code>.
Kontrolliert den Pfad in den Konfigurationsdateien vom Blue Panel. Die Dateien <code>gemini_desktop.xml</code> oder <code>gemini_desktop1-5.xml</code> findet ihr im Verzeichnis <code>/etc/enigma2</code>. Editiert die Dateien mit eurem Wunscheditor (z.B. [[Vi]]) und passt die Pfade wie in folgendem Beispiel an.
+
Check the path in the configuration file of the Blue Panel. The file <code>gemini_desktop.xml</code> or <code>gemini_desktop1-5.xml</code> can be found in <code>/etc/enigma2</code>. Edit this file with an editor (eg. [[Vi]]) and modify the paths as shown in the following example.
  
 
<syntaxhighlight lang="xml" highlight="8,16,24,32">
 
<syntaxhighlight lang="xml" highlight="8,16,24,32">

Version vom 24. Dezember 2012, 19:25 Uhr

Deutsch.png - in Deutsch English.png - in English
Icon selection - nutrix


Since GP3.2 Version v0.60, it's possible to select different Icon packages and frames in Blue Panel. Standard are the gp-icons-nutrix icons active, other packages need to be installed and selected.

Install the Icon packages via AddonsIcons and Frames. These packages are available:

  • gp-icons-oldgemini
  • gp-icons-faenza
  • gp-icons-denmimleo
Ambox notice.png Restart the Blue Panel, after the selection of a new frame to see the new frame.

Extra IconPackages

The extra icon packages contain additional icons for the Blue Panel. You can assign those icons to Enigma2 Plugins (eg. eParted). These extra packages are available:

First of all, add the plugins in the Blue Panel or the vDesktop via Blue PanelMenuSettingsAdd Plugin. And save with the green button.

Icons can be assigned in the Blu Panel via Menu → select Plugin → SettingsDetails. The icons can be found in the following directory:

/usr/share/enigma2/iconpackages/paketname/plugin_icons

Save the changes with the green button.

Changing the extra icons

When changing the icon package it is also possible to use the corresponding extra icons. Therefore it is important to keep the following in mind.

  • File names of the icons must be identical in the different extra packages.
  • The path to the icon name must be "relative" - plugin_icons/imagename.png.

Check the path in the configuration file of the Blue Panel. The file gemini_desktop.xml or gemini_desktop1-5.xml can be found in /etc/enigma2. Edit this file with an editor (eg. Vi) and modify the paths as shown in the following example.

<?xml version="1.0" encoding="UTF-8" ?>
<xml>
        <Plugins>
                <content>
                        <name>Bildbetrachter</name>
                        <sel>1</sel>
                        <code><![CDATA[from Plugins.Extensions.PicturePlayer.plugin .....</code>
                        <icon>plugin_icons/pictureviewer.png</icon>                        <info><![CDATA[Dateiformate (BMP, PNG, JPG, GIF]]></info>
                        <key>blue</key>
                </content>
                <content>
                        <name>Genuine Dreambox</name>
                        <sel>1</sel>
                        <code><![CDATA[from Plugins.Extensions.GenuineDreambox.plugin .....</code>
                        <icon>plugin_icons/genuine.png</icon>                        <info><![CDATA[Genuine Dreambox]]></info>
                        <key>green</key>
                </content>
                <content>
                        <name>Webinterface</name>
                        <sel>1</sel>
                        <code><![CDATA[from Plugins.Extensions.WebInterface.plugin .....</code>
                        <icon>plugin_icons/webinterface.png</icon>                        <info><![CDATA[Konfiguration des Webinterfaces]]></info>
                        <key>red</key>
                </content>
                <content>
                        <name>eParted</name>
                        <sel>1</sel>
                        <code><![CDATA[from Plugins.Extensions.eParted.plugin .....</code>
                        <icon>plugin_icons/eparted.png</icon>                        <info><![CDATA[Erstellen und Verändern der Partitionstabelle]]></info>
                        <key>0</key>
                </content>
        </Plugins>
</xml>