Reorganize Fedora dotfiles and remove legacy profile

This commit is contained in:
Mikhail Kilin
2026-07-25 12:38:39 +03:00
parent a601a53660
commit 6cb1d53a70
75 changed files with 2146 additions and 3974 deletions

View File

@@ -0,0 +1,16 @@
import QtQuick
Image {
id: root
property string name
property real size: 15
width: size
height: size
source: Qt.resolvedUrl("icons/" + name + ".svg")
sourceSize.width: size * 2
sourceSize.height: size * 2
fillMode: Image.PreserveAspectFit
smooth: true
}