1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
import Quickshell
import Quickshell.Widgets
import QtQuick
Column {
spacing: 12
Text {
text: Icons.scanning ? "scanning…" : `${Icons.iconThemes.length} icon themes · ${Icons.cursorThemes.length} cursor themes`
color: Theme.overlay
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
}
Text {
text: "Icon theme"
color: Theme.subtext
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true }
}
Flickable {
id: iconList
width: parent.width
height: 150
contentWidth: iconRow.implicitWidth
contentHeight: height
clip: true
flickableDirection: Flickable.HorizontalFlick
Row {
id: iconRow
spacing: 10
Repeater {
model: Icons.iconThemes
Rectangle {
id: iconCard
required property string modelData
readonly property bool current: Icons.currentIcon === modelData
width: 150; height: 120; radius: 10
color: current ? Qt.alpha(Theme.accent, 0.2) : Qt.alpha(Theme.surface, 0.35)
border.width: current ? 2 : 1
border.color: current ? Theme.accent : "transparent"
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Icons.applyIcon(modelData)
}
Column {
anchors.centerIn: parent
spacing: 6
Row {
spacing: 6
Repeater {
model: ["folder", "text-x-generic", "image-x-generic", "network-wireless"]
IconImage {
required property string modelData
readonly property string glyph: (Icons.iconPreview[iconCard.modelData] ?? {})[modelData] ?? ""
// Absolute paths must carry file://, or they
// resolve against the config's qrc base and
// fail; Gtk's builtin icons come back as
// /org/gtk gresource paths Qt cannot open.
source: glyph.indexOf("/") === 0 && glyph.indexOf("/org/gtk/") !== 0
? "file://" + glyph : ""
implicitSize: 26
}
}
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
text: iconCard.current ? modelData + " current" : modelData
color: Theme.text
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
}
}
}
}
}
}
Text {
text: "Cursor theme"
color: Theme.subtext
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true }
}
Flickable {
width: parent.width
height: 150
contentWidth: cursorRow.implicitWidth
contentHeight: height
clip: true
flickableDirection: Flickable.HorizontalFlick
Row {
id: cursorRow
spacing: 10
Repeater {
model: Icons.cursorThemes
Rectangle {
required property string modelData
readonly property bool current: Icons.currentCursor === modelData
width: 120; height: 120; radius: 10
color: current ? Qt.alpha(Theme.accent, 0.2) : Qt.alpha(Theme.surface, 0.35)
border.width: current ? 2 : 1
border.color: current ? Theme.accent : "transparent"
HoverHandler {
onHoveredChanged: {
if (hovered) {
Icons.previewCursor(modelData);
// Live preview: the real cursor, reverted on leave.
liveCursorCursor = modelData;
Quickshell.execDetached(["hyprctl", "setcursor", modelData, "24"]);
} else if (liveCursorCursor === modelData) {
liveCursorCursor = "";
Quickshell.execDetached(["hyprctl", "setcursor", Icons.currentCursor, "24"]);
}
}
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Icons.applyCursor(modelData)
}
Column {
anchors.centerIn: parent
spacing: 6
Image {
anchors.horizontalCenter: parent.horizontalCenter
width: 40; height: 40
asynchronous: true
source: Icons.cursorPreview[modelData] ? "file://" + Icons.cursorPreview[modelData] : ""
fillMode: Image.PreserveAspectFit
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
text: parent.parent.current ? modelData + " current" : modelData
color: Theme.text
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
width: 110
elide: Text.ElideMiddle
horizontalAlignment: Text.AlignHCenter
}
}
}
}
}
}
Text {
width: parent.width
wrapMode: Text.Wrap
visible: Icons.notice !== ""
text: Icons.notice
color: Theme.green
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 3 }
}
property string liveCursorCursor: ""
onVisibleChanged: if (!visible && liveCursorCursor !== "") {
Quickshell.execDetached(["hyprctl", "setcursor", Icons.currentCursor, "24"]);
liveCursorCursor = "";
}
// A Loader destroys this item on tab switch or drawer close, and visible
// does not necessarily change first, so revert the real cursor here too.
Component.onDestruction: if (liveCursorCursor !== "") {
Quickshell.execDetached(["hyprctl", "setcursor", Icons.currentCursor, "24"]);
liveCursorCursor = "";
}
}
|