How to set up icon in kickoff (plasma 6)

Hi! Hope that some plasma-manager developers are here.

How can I set the icon for kickoff in plasma? To be more specific I want to change the first icon on the left:
kickoff-icon
and I want to use a .jpeg file. Is it possible to accomplish that?
I know about this option:

programs.plasma.panels = [
  {
    widgets = [ { kickoff.icon = com.some-system-icon; } ]
  }
];

But I can use only those which are installed with other applications.

Best,
Miro

Hi there!

I’m not a plasma-manager developer, however I do use it quite a bit :slight_smile:

What you’re asking for is actually described explicitly when you check the description:

So what you do is, set the icon value to an absolute path that matches your desired icon.

  programs.plasma.panels = [{
    widgets = [{
      name = "org.kde.plasma.kickoff";
      config = { General = { icon = "/home/myuser/myownicon.png"; }; };
    }];
  }];

So long as you store the icon in an accessible place, it should load your icon next time you log in.

1 Like

Thanks a lot!
I have overlooked that…
Miro

1 Like