Announcement
Collapse
No announcement yet.
Display issues until KDE update from jan. 09
Collapse
This topic is closed.
X
X
-
-
You can try fiddling a bit with the qml code, by editing /usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml
for example, you can change:
Code:var minIconWidth = Math.max(iconWidth, units.iconSizes.small * 8);
Code:var minIconWidth = Math.max(iconWidth, units.iconSizes.small * [B]6[/B]);
Notes:
- You need to relog into the plasma or restart the plasmashell to see the changes
- Plasma updates will overwrite your changes, so you may need to reapply the edits after plasma updates...(it's also possible to copy the plasmoid to your user $HOME/.local/share/plasma/plasmoids/ and make the edits there, but as that will always override system wide plasmoids...you may need to occasionally check future changes to the system plasmoid to get latest changes to your "user installed" edited version.)
- Top
- Bottom
Comment
-
Originally posted by kubicle View PostYou can try fiddling a bit with the qml code, by editing /usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml
for example, you can change:
Code:var minIconWidth = Math.max(iconWidth, units.iconSizes.small * 8);
Code:var minIconWidth = Math.max(iconWidth, units.iconSizes.small * [B]6[/B]);
Notes:
- You need to relog into the plasma or restart the plasmashell to see the changes
- Plasma updates will overwrite your changes, so you may need to reapply the edits after plasma updates...(it's also possible to copy the plasmoid to your user $HOME/.local/share/plasma/plasmoids/ and make the edits there, but as that will always override system wide plasmoids...you may need to occasionally check future changes to the system plasmoid to get latest changes to your "user installed" edited version.)
thanks!
Code:find /usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml -type f -exec sed -i 's/iconWidth, units.iconSizes.small * 8/iconWidth, units.iconSizes.small * 6/g' {} \;
Last edited by cluster; Jan 12, 2019, 11:37 AM.
- Top
- Bottom
Comment
Comment