我想更改 KDE/PLASMA 中的启动画面图像。
我制作了一个自定义主题,并更改了位于的图片
/usr/share/plasma/look-and-feel/org.kde.my_theme.desktop/contents/splash/images/kde.svgz
不过我想改变图片的大小。这应该在文件中控制:
/usr/share/plasma/look-and-feel/org.kde.arch_custom.desktop/contents/splash/Splash.qml
上面写着
Rectangle {
id: topRect
width: parent.width
height: (root.height / 3) - bottomRect.height - 1
y: root.height
color: "#4C000000"
Image {
source: "images/kde.svgz"
anchors.centerIn: parent
sourceSize.height: 128
sourceSize.width: 128
}
}
我尝试过编辑其中的不同部分,但图片始终是相同的。我应该编辑什么来更改启动图像大小?
答案1
如果您(或关注搜索结果的人)实际上试图更改背景图像,请检查自定义主题的源代码(有些位于kde商店)
基本上你只需要替换[Splash.qml中的顶级/根元素]
Rectangle {
id: root
color: "black"
[例如当前默认的 Fedora 主题]
和
Image {
id: root
source: "images/background.png"
在指定位置放置适当的背景图片