How to create Look and Feel Package: Difference between revisions

From KDE Community Wiki
No edit summary
No edit summary
Line 101: Line 101:


You can install your look and feel package from terminal using ''kpackagetool5 -i "name of your theme"''  
You can install your look and feel package from terminal using ''kpackagetool5 -i "name of your theme"''  
It will be installed to ''.local/share/plasma/look-and-feel/''
It will be installed to ''.local/share/plasma/look-and-feel/''
Type ''kpackagetool5 -h'' to see more options  
 
This will also install dependencies specified in metadata.desktop, so you can test it locally on your system.
Type ''kpackagetool5 -h'' to see more options.


=== System dependencies  (experimental)==
=== System dependencies  (experimental)==

Revision as of 22:19, 7 February 2017

How to create your own Look and Feel package

First of all we need to install Plasma Look And Feel Explorer, which is a part of the plasma-sdk package.

Plasma Look and Feel Explorer is a rather simple app. On the right panel/side you have three options:

  • A list of installed look and feel themes in your system, so you can pick one and edit it directly.
  • Open Theme folder - It opens a directory where look and feel themes are saved.

/home/yourusername/.local/share/plasma/look-and-feel/

  • 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.

You can now chose your freshly created look and feel theme from the list of available themes and edit it in the main window.

  • Main window

It is rather self-explanatory. You can edit details of your look an feel package (name, author, etc). These details are saved into metadata.desktop in your look and feel directory. You also have two buttons there:

  • Layout from current Plasma setup

It saves your current desktop layout like placement of panels, plasma applets, wallpaper etc. TODO Add some info what is exactly saved here. All these settings are saved into:

.local/share/plasma/look-and-feel/nameofyourtheme/contents/layout/org.kde.plasma.desktop-layout.js

This is a java script 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.

  • Defaults from current setup*

It creates a .local/share/plasma/look-and-feel/nameofyourtheme/contents/"default" file where the following settings are saved.

  • widget style
  • color scheme
  • icons
  • plasma theme
  • cursor theme
  • window switcher
  • desktop switcher
  • window decoration.

You can also add an image which will be used as a preview, stored in .local/share/plasma/look-and-feel/nameofyourtheme/contents/preview

How to add dependencies from KDE Store.

First of all you need to add

X-KPackage-Dependencies=

to your metadata.desktop. Lets take a look at this example

Elementary Luna Plasma Color Schemes https://store.kde.org/p/1001720

X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1001720

kns:// - the name of the protocol

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)

  • aurorae.knsrc
  • cgcgtk3.knsrc
  • cgcicon.knsrc
  • cgctheme.knsrc
  • colorschemes.knsrc
  • comic.knsrc
  • discover_ktexteditor_codesnippets_core.knsrc
  • emoticons.knsrc
  • icons.knsrc -icons
  • kfontinst.knsrc
  • ksysguard.knsrc
  • kwineffect.knsrc
  • kwinscripts.knsrc
  • kwinswitcher.knsrc
  • lookandfeel.knsrc
  • plasma-themes.knsrc
  • plasmoids.knsrc
  • sddmtheme.knsrc
  • servicemenu.knsrc
  • wallpaper.knsrc
  • xcursor.knsrc


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.

You can specify more than one dependency. Here is an example from United [1] metadata.desktop

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

On JSON:

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" }
  • Color Scheme (Ambiance)

https://store.kde.org/p/1001495

  • Plasma theme (Unity Ambiance)

https://store.kde.org/p/998797

  • Aurorae (Blender Ambiance)

https://store.kde.org/p/1136954

You can install your look and feel package from terminal using kpackagetool5 -i "name of your theme" It will be installed to .local/share/plasma/look-and-feel/

This will also install dependencies specified in metadata.desktop, so you can test it locally on your system. Type kpackagetool5 -h to see more options.

= System dependencies (experimental)

You can specify system dependencies using their AppStream URI scheme. More information about it can be found here: https://www.freedesktop.org/software/appstream/docs/sect-AppStream-Services-UrlHandler.html

To look up what's the resource you are looking for, you can check on your system by calling "appstreamcli search <something>"

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.