Do you have bookmarks in your menu?
I do. I export the bookmarks from the browser which creates a bookmarks.html file. Then I use a little GUI app that I made to process the bookmarks.html file and export them as the old style Microsoft .url files. I have 20,841 bookmarks as .url files.
From there they are indexable by baloo and they show up in Krunner and searches from Dolphin, and in your menu when you type in the search box.
Thereās a little script in my ~/bin folder called ieurl.sh. Set your file association to open .url files with ieurl.sh and the URLās open in your default browser when you click or double click on them.
The information is out there.
You can export your bookmarks from your browser and use Keditbookmarks to export them from the html file as .url files. But Keditbookmarks chokes on 20,000 bookmarks, so I used a script then later made a GUI for it.
If you donāt have a ton of bookmarks, keditbookmarks will do a good job, except it does have problems with spaces in bookmark names if you store them on a NTFS partition. Itāll make .url files that you cannot delete because some websites use characters that are invalid or invisible when used for file names. Itās a real trick to figue out what hidden characters are in the name so you can delete or even edit them.
Tip. When you save a bookmark edit the name so it describes what it is for and remove anything like stars, flags, or whatever isnāt text.
You must add Keditbookmarks to your menu because it doesnāt install a desktop file for the menu.
Hereās the ieurl.sh script.
#!/usr/bin/bash
sed 's/^URL=/URL=/' "$1" | grep -m 1 '^URL=' | sed 's/^URL=//' | sed 's/\r//' | xargs xdg-open
#
So your oping bookmarks from your menu problem is solved if you can make the .url files. Plasma is a powerful desktop and you can make it do about anything by researching your problem.
I canāt stand the black and white symbolic icon trend. I buy a nice color monitor and I get B&W icons. No thanks. I gathered all of the nice color icons that I could find and made a few, like a 3D blue fan blade icon for Cooler Control.
Deploying an icon isnāt as simple as you think. You need different sizes and they have to go in different folders etc. A different size is used depending on where itās displayed and, in Dolphin, it depends on the view mode and zoom level.
Iāve been testing my GUI app that takes an icon that you load into it and it deploys icons of different sizes (resizes on the fly) into .local/share/icons/ICON-THEME/ in the following user selectable folders:
16x16, 22x22, 32x32, 48x48, 64x64, 96x96 128x128, 256x256, applets, base, hicolor and scalable. The top level folders also have sub-folders (apps, applets, devices, places, status) etc. Thatās where appropriate sized icons go (48x48/apps/app-name.png or .svg/svgz). Thatās on Tab one (Icon Deployer).
Tab two (Theme Architect) creates the icon index.theme file by analyzing the folder structure then formatting the data to the Freedesktop specification for icon index.theme files.
Iāll be posting and sharing that as soon as Iām done testing it. Itās working good now but, Iām taking a break. Iāve replaced my icon theme from backup countless times. Now I can replace a dozen icons with about 25-30 clicks, instead of doing it the hard way. It makes building a custom icon theme simple.
I know thatās not something you brought up, but when you have a problem look for a solution to it. Many people have customized Plasma and just go on with their life, unless you askā¦do you know how to do this?
Oh, and try right clicking on something in Places and selecting "Open in Split View). Thereās your folder tree. Add the āpopā toolbar button and all you have to do is click it and the folder tree in the split view will pop open in a new window (it also returns your original Dolphin to its previous state without a split view).