我想更改 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
首先使用 inkscape 調整框架大小開啟 kde.svgz 文件,然後修改圖像以匹配框架。我將圖像設定為我需要的兩倍,因為一旦您調整了 inkscape 中所有內容的大小,您就可以透過編輯 main.qml 檔案來控制所查看的實際大小。
要控制大小只需修改:
sourceSize.height: 128
sourceSize.width: 128
例如,我的設定是這樣的:
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: 300
sourceSize.width: 300
}
}
完成後保存並測試你的飛濺。如果你遵循正確的話,你應該得到類似的結果: