Plasma/Create a Global Theme Package: Difference between revisions

    From KDE UserBase Wiki
    No edit summary
    (Redirect to page with correct name)
    Tag: New redirect
    Line 1: Line 1:
    <languages />
    #REDIRECT [[Plasma/Create a Global Theme Package]]
    <translate>
    == How to create your own Look and Feel package == <!--T:1-->
     
    <!--T:2-->
    First of all we need to install '''Plasma Look And Feel Explorer''', which is a part of the '''plasma-sdk''' package.
     
    <!--T:3-->
    Plasma Look and Feel Explorer is a rather simple app.
    On the right panel/side you have three options:
     
    <!--T:4-->
    * '''A list of installed look and feel themes''' in your system, so you can pick one and edit it directly.</translate>
    <translate>
    <!--T:5-->
    *'''Open Theme folder''' - It opens a directory where look and feel themes are saved.<br /><tt>/home/yourusername/.local/share/plasma/look-and-feel/</tt></translate>
    <translate>
    <!--T:6-->
    *'''New Theme''', where you can fill in all details of your theme, like name, author etc. You need to fill in all the fields, otherwise  the ''OK'' button will stay grayed out. If you click ''OK'' you will get a notification saying ''Plasma Layout successfully duplicated''.
     
    <!--T:7-->
    You can now choose your freshly created look and feel theme from the list of available themes and edit it in the main window.
     
    <!--T:8-->
    *'''Main window'''<br />It is rather self-explanatory. You can edit details of your look and feel package (name, author, etc). These details are saved into metadata.desktop in your look and feel directory. You also have two buttons there:
     
    <!--T:9-->
    *'''Layout from current Plasma setup'''<br />It saves your current desktop layout like placement of panels, plasma applets, wallpaper etc. All these settings are saved into:</translate><br /><br /><translate>
    <!--T:10-->
    <tt>.local/share/plasma/look-and-feel/nameofyourtheme/contents/layouts/org.kde.plasma.desktop-layout.js</tt></translate><br /><br /><translate>
    <!--T:11-->
    This is a javascript file executed when you check "Use desktop layout from theme" in the Look And Feel module of System Settings.  If your look and feel theme does not change desktop layout, you can safely remove that file.</translate><br /><br /><translate>
    <!--T:12-->
    The content of the Javascript file will recreate a plasma configuration mirroring the contents of your current main plasma configuration file: <tt>~/.config/plasma-org.kde.plasma.desktop-appletsrc</tt>
     
     
    <!--T:66-->
    If you want to have more granular control over what exactly happens with your theme, especially with the layout you can use [[Special:myLanguage/KDE_System_Administration/PlasmaDesktopScripting|Plasma desktop scripting]]. Check out this [[Special:myLanguage/Plasma/How_to_create_a_Unity-like_look_and_feel_theme_using_Plasma%E2%80%99s_Desktop_Scripting_API|tutorial]] for more info.
     
    <!--T:13-->
    *'''Defaults from current setup'''<br />It creates a file:</translate><br /><translate>
    <!--T:14-->
    <tt>.local/share/plasma/look-and-feel/nameofyourtheme/contents/"default"</tt></translate><br /><translate>
    <!--T:15-->
    The following settings are saved:</translate>
    <translate>
    <!--T:16-->
    **widget style</translate>
    <translate>
    <!--T:17-->
    **color scheme</translate>
    <translate>
    <!--T:18-->
    **icons</translate>
    <translate>
    <!--T:19-->
    **plasma theme</translate>
    <translate>
    <!--T:20-->
    **cursor theme</translate>
    <translate>
    <!--T:21-->
    **window switcher</translate>
    <translate>
    <!--T:22-->
    **desktop switcher</translate>
    <translate>
    <!--T:23-->
    **window decoration.
     
    <!--T:24-->
    You can also add an image which will be used as a preview, stored in
    <tt>.local/share/plasma/look-and-feel/nameofyourtheme/contents/preview</tt>
     
    == How to add dependencies from KDE Store. == <!--T:25-->
     
    <!--T:26-->
    First of all you need to add
    {{Input|1=X-KPackage-Dependencies=}}
    to your metadata.desktop. Lets take a look at this example
     
    <!--T:27-->
    [https://store.kde.org/p/1001720 Elementary Luna Plasma Color Schemes]
     
    <!--T:28-->
    {{Input|1=X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1001720}}
     
    <!--T:29-->
    '''kns://''' - the name of the protocol
     
    <!--T:30-->
    '''colorschemes.knsrc''' - type of the resource we want to download (color scheme in that case)
    Here is a list of available resources on my system (/etc/xdg)
     
    <!--T:31-->
    *aurorae.knsrc
     
    <!--T:32-->
    *cgcgtk3.knsrc
     
    <!--T:33-->
    *cgcicon.knsrc
     
    <!--T:34-->
    *cgctheme.knsrc
     
    <!--T:35-->
    *colorschemes.knsrc
     
    <!--T:36-->
    *comic.knsrc
     
    <!--T:37-->
    *discover_ktexteditor_codesnippets_core.knsrc
     
    <!--T:38-->
    *emoticons.knsrc
     
    <!--T:39-->
    *icons.knsrc
     
    <!--T:40-->
    *kfontinst.knsrc
     
    <!--T:41-->
    *ksysguard.knsrc
     
    <!--T:42-->
    *kwineffect.knsrc
     
    <!--T:43-->
    *kwinscripts.knsrc
     
    <!--T:44-->
    *kwinswitcher.knsrc
     
    <!--T:45-->
    *lookandfeel.knsrc
     
    <!--T:46-->
    *plasma-themes.knsrc
     
    <!--T:47-->
    *plasmoids.knsrc
     
    <!--T:48-->
    *sddmtheme.knsrc
     
    <!--T:49-->
    *servicemenu.knsrc
     
    <!--T:50-->
    *wallpaper.knsrc
     
    <!--T:51-->
    *xcursor.knsrc
     
     
    <!--T:52-->
    '''api.kde-look.org/1001720''' - the url to the content stored on the server, from my experience ''api.kde-look.org/'' is always the same, only id changes. You can get the id from the kde store url ''https://store.kde.org/p/1001720'' '''1001720'''.
     
    <!--T:53-->
    You can specify more than one dependency. Here is an example from [https://store.kde.org/p/1167950/ United] metadata.desktop
     
    <!--T:54-->
    {{Input|1=X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1001495,kns://plasma-themes.knsrc/api.kde-look.org/998797,kns://aurorae.knsrc/api.kde-look.org/1136954}}
     
    <!--T:55-->
    On JSON:
    {{Input|1=<nowiki>X-KPackage-Dependencies: { "kns://colorschemes.knsrc/api.kde-look.org/1001495", "kns://plasma-themes.knsrc/api.kde-look.org/998797", "kns://aurorae.knsrc/api.kde-look.org/1136954" }</nowiki>}}
     
    <!--T:56-->
    * [https://store.kde.org/p/1001495 Color Scheme (Ambiance)]
     
    <!--T:57-->
    * [https://store.kde.org/p/998797 Plasma theme (Unity Ambiance)]
     
    <!--T:58-->
    * [https://store.kde.org/p/1136954 Aurorae (Blender Ambiance)]
     
    <!--T:59-->
    You can install your look and feel package from terminal using
    {{Input|1=kpackagetool5 -i "name of your theme"}}
    It will be installed to <tt>.local/share/plasma/look-and-feel/</tt>
     
    <!--T:60-->
    This will also install dependencies specified in <tt>metadata.desktop</tt>, so you can test it locally on your system.
    Type <code>kpackagetool5 -h</code> to see more options.
     
    == System dependencies  (experimental)== <!--T:61-->
     
    <!--T:62-->
    You can specify system dependencies using their AppStream URI scheme. More information about it can be found [https://www.freedesktop.org/software/appstream/docs/sect-AppStream-Services-UrlHandler.html here].
     
    <!--T:63-->
    To look up what's the resource you are looking for, you can check on your system by calling <code>appstreamcli search <something></code>
     
    <!--T:64-->
    When the Look and Feel package is installed, if a system dependency is specified, it will be the system deciding how to install it, most likely using PackageKit.
     
    <!--T:65-->
    [[Category:Tutorials]]
    </translate>

    Revision as of 16:36, 23 October 2019