-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-2026.html
More file actions
181 lines (160 loc) · 3.3 KB
/
Copy pathblog-2026.html
File metadata and controls
181 lines (160 loc) · 3.3 KB
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
<!DOCTYPE html>
<html lang=en>
<head>
<title>teallach desktop</title>
<meta charset="utf-8" />
<meta name="description" content="Teallach - a micro Desktop Environment"/>
<meta name="viewport" content="width=device-width">
<style>
body {
overflow-y: scroll;
font-family: sans-serif;
font-size: 100%;
max-width: 640px;
padding: 20px;
line-height: 1.5;
word-wrap: break-word;
margin: auto;
text-align: justify;
text-justify: inter-word;
--color-bg: #2E3436;
--color-hl: #333;
--color-fg: #C0C0C0;
--color-link: #FFFFFF;
--color-subtle: #555;
color: var(--color-fg);
background-color: var(--color-bg);
}
#menu {
font-family: sans-serif !important;
}
pre {
padding: 20px;
white-space: pre;
overflow-x: auto;
border: 1px dotted gray;
display: block;
margin: 20px auto;
color: var(--color-fg);
background-color: var(--color-bg);
}
code {
font-family: monospace;
color: var(--color-fg);
background-color: var(--color-bg);
}
img {
margin: 0px;
margin-bottom: 20px;
margin-top: 20px;
max-width: 100%;
}
table {
border-collapse: collapse;
}
table,th,td {
border: 1px solid black;
}
th,td {
padding: 15px;
text-align: left;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
text-decoration: none;
}
h1, h2, h3, h4, h5 {
color: var(--color-fg);
font-family: sans-serif;
font-weight: bold;
}
h1 {
font-size: 130%;
}
h2 {
font-size: 120%;
}
h3 {
font-size: 110%;
}
h4 {
font-size: 105%;
font-style: italic;
}
h5 {
font-size: 100%;
font-style: italic;
}
dt code {
font-weight: bold;
}
dd p {
margin-top: 0;
}
a, a:visited {
color: var(--color-link);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a.perma {
display: none;
}
a.perma:hover {
text-decoration: none;
}
:hover > a.perma {
width: 1.5em;
margin-left: -1.5em;
display: inline-block;
}
:target {
background-color: rgba(128, 128, 128, 0.2);
}
.LOC {
margin: 2em 0;
}
</style>
</head>
<body>
<main>
<center id="menu">
[<a href="index.html">home</a>]
[<a href="blog.html">blog</a>]
[<a href="manual.html">manual</a>]
[<a href="https://github.com/teallach-desktop/teallach">code</a>]
</center>
<!--%%%TOC%%%-->
<h1 id="another-logo">2026.20 Another Logo</h1>
<p>Well, let’s try again.</p>
<p><img src="images/logo-256.png" /></p>
<h1 id="theming">2026.09 Theming</h1>
<p>It is hard to achieve compositor and cross-toolkit visual uniformity,
and increasingly so. I think this is because:</p>
<ol type="1">
<li>There is a shift in how Gtk 4 views theming and what it considers
supported.</li>
<li>Qt handles themes differently between QWidgets and QtQuick.</li>
<li>There are other toolkits in use, for example <code>iced-rs</code>,
<code>tk</code> and whatever is used by electron based
applications.</li>
</ol>
<p>From a Teallach perspective it makes sense to:</p>
<ul>
<li>Avoid chasing Qt/Gtk internal visuals; and not treating toolkits as
theme providers. In other words, let us not try to parse Gtk CSS and
Kvantum files on the fly.</li>
<li>Build compositor themerc files and icons to be consistent with
popular Gtk/Qt themes, rather than identical. In the same vein, try to
match behaviour rather than pixel perfection.</li>
<li>Treat applications as guests and accept that their looks will be
toolkit dependent.</li>
</ul>
<p>Ref:</p>
<ul>
<li><a
href="https://github.com/johanmalm/theme-gubbins/">theme-gubbins</a></li>
</ul>
</main>
</body>
</html>