-
Hi! I have been using Kvantum on my KDE desktop for a while now and I really like it! I really appreciate rich themes with lots of detail, shadows, gradients, etc and Kvantum has several nice ones. Thanks for creating and maintaining Kvantum! Currently I'm using KvSimplicity and I'm looking for a way to reduce the distance between the menu and the toolbars slightly. I know there is a small blue bar that appears when hovering over a menu item (a really nice touch!) but even after that there is a lot of extra space that the other themes don't have. Even after looking through the config file several times I can't seem to find a setting for this. Can I adjust this somehow? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Only 4 pixels of the red area in your screenshot is taken by the menu-bar; the rest is reserved for the text by Qt, and some of it is related to the tool-bar below it. Anyway, you could save the theme and add If you also want to make the tool-bar thinner, decrease A comparison with Fusion after these changes: Of course, this isn't what I wanted for KvSimplicity, but Kvantum can be customized. Everything is explained in the documentation, inside the source. |
Beta Was this translation helpful? Give feedback.
Only 4 pixels of the red area in your screenshot is taken by the menu-bar; the rest is reserved for the text by Qt, and some of it is related to the tool-bar below it.
Anyway, you could save the theme and add
text.margin.bottom=0
under the section[MenuBarItem]
in~/.config/Kvantum/KvSimplicity#/KvSimplicity#.kvconfig
. If you don't want the bottom line on mouseover, you could changeframe.bottom=2
toframe.bottom=0
under the same section.If you also want to make the tool-bar thinner, decrease
frame.bottom=5
under[Toolbar]
.A comparison with Fusion after these changes:
Of course, this isn't what I wanted for KvSimplicity, but Kvantum can be customized.
Everything is explained in the doc…