-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqtile.html
489 lines (487 loc) · 19.2 KB
/
qtile.html
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Qtile edition of Woof OS — the original edition made for and by ACuteWoof."
/>
<meta name="author" content="Vithushan Sutharsan (ACuteWoof)" />
<link rel="icon" type="image/png" href="https://github.com/woof-os.png" />
<title>Woof OS Qtile</title>
<!--<link rel="stylesheet" href="tailwind.css" />-->
<link rel="stylesheet" href="./tailwind.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Major+Mono+Display&display=swap"
rel="stylesheet"
/>
<script defer>
function sendmessage() {
message = document.getElementById("themessage").value;
const xhr = new XMLHttpRequest();
try {
xhr.open(
"GET",
"https://www.lewoof.xyz/api/index?message=`[sent from os.lewoof.xyz]`: " +
message,
);
xhr.send();
xhr.responseType = "json";
xhr.onload = () => {
if (xhr.readyState == 4 && xhr.status == 200) {
const data = xhr.response;
document.getElementById("themessage").value = "";
document.getElementById("sendbutton").innerHTML =
"Message sent :)";
console.log(data);
} else {
console.log(`Error: ${xhr.status}`);
document.getElementById("sendbutton").innerHTML =
"Couldn't send message :/";
}
};
} catch (e) {
console.error(e);
document.getElementById("sendbutton").innerHTML =
"Couldn't send message :/";
}
}
</script>
</head>
<body
class="text-wrap flex flex-col gap-16 dark m-0 min-h-screen bg-mirage-950 p-8 lg:p-12 xl:px-32 text-periwinkle-200 font-mono"
>
<section id="hero" class="w-full flex flex-col items-center justify-center">
<h1 class="text-center font-display text-5xl lg:text-7xl text-yellow">
Woof os qtile
</h1>
</section>
<nav
class="items-center prose prose-tokyonight !max-w-full flex gap-4 justify-center"
>
<a href="/">Home</a>
<span class="text-yellow/50">·</span>
<a href="qtile" class="!text-pink">Qtile</a>
<a href="sway">Sway</a>
<span class="text-yellow/50">·</span>
<a href="pacman">Pacman Repository</a>
<span class="text-yellow/50">·</span>
<a class="!text-red-400 !hover:bg-red-500" href="important"
>Important Note</a
>
</nav>
<section id="content" class="w-full">
<div class="prose prose-tokyonight prose-invert !max-w-full">
<div class="flex flex-col gap-8">
<article>
<div class="flex gap-4 __className_62325b">
<a target="_self" href="#download">Download</a
><a target="_self" href="#keybinds">Keybinds</a
><a target="_self" href="#configs">Configs</a
><a target="_self" href="#gallery">Gallery</a>
</div>
<img
alt="main image"
loading="lazy"
width="1920"
height="1080"
decoding="async"
data-nimg="1"
src="images/qtile/s4.png"
style="color: transparent"
/>
<hr />
<section id="download">
<h1>Download</h1>
<span class="flex flex-col gap-2 md:flex-row md:gap-12"
><span>
<h2>LeWoof Mirror</h2>
<a
target="_blank"
href="https://dl.os.lewoof.xyz/qtile/woofos-x86_64.iso"
>Latest release</a
><br /><a
target="_blank"
href="https://dl.os.lewoof.xyz/qtile/"
>Browse downloads</a
> </span
><span>
<h2>Github Mirror</h2>
<a
target="_blank"
href="https://github.com/woof-os/isos-qtile/releases/latest/download/woofos.iso"
>Latest release</a
><br /><a
target="_blank"
href="https://github.com/woof-os/isos-qtile/releases"
>Browse downloads</a
>
</span></span
>
</section>
<hr />
<section id="keybinds">
<h1>Keybinds for Woof OS Qtile edition</h1>
<p>
Woof OS uses a tiling window manager, qtile, mainly controlled
using the keyboard.<br />
The keybinds listed here are declared in
<code>~/.config/qtile/config.py</code>. Also note that the
<kbd>Caps Lock</kbd> key is swapped with <kbd>Escape</kbd>
because no one uses Caps Lock, and Escape is more useful for the
intended workflow in Woof OS.
</p>
By default, <kbd>[mod]</kbd> is the <kbd>Super</kbd>/<kbd
>mod4</kbd
>
key, which is the <kbd>⊞ Win</kbd> key on most keyboards, and the
<kbd>⌘ Command</kbd> key on Macs.
<div class="md:grid md:grid-cols-2 md:gap-12 mt-8">
<div>
<h2>Focus navigation</h2>
<ul>
<li>
<kbd>[mod]</kbd> <kbd>H</kbd> moves focus to the
<b>left</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>L</kbd> moves focus to the
<b>right</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>J</kbd> moves focus <b>down</b>
</li>
<li><kbd>[mod]</kbd> <kbd>K</kbd> moves focus <b>up</b></li>
<li>
<kbd>[mod]</kbd> <kbd>Space</kbd> moves focus to the
<b>next window</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>.</kbd> moves focus to the
<b>next screen</b>
</li>
<p>
The mouse can also be used to switch focus between windows
by simply hovering over them.
</p>
<li>
<kbd>[mod]</kbd>
<span
><span><kbd>1</kbd>/</span><span><kbd>2</kbd>/</span
><span><kbd>3</kbd>/</span><span><kbd>4</kbd>/</span
><span><kbd>5</kbd>/</span><span><kbd>6</kbd>/</span
><span><kbd>7</kbd>/</span><span><kbd>8</kbd>/</span
><span><kbd>9</kbd></span></span
>
moves focus to the workspace assigned to the ID
</li>
</ul>
</div>
<div>
<h2>Window arrangement</h2>
<ul>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd> <kbd>H</kbd> moves
focused window to the <b>left</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd> <kbd>L</kbd> moves
focused window to the <b>right</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd> <kbd>J</kbd> moves
focused window <b>down</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd> <kbd>K</kbd> moves
focused window <b>up</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd>
<kbd>Return</kbd> toggles between split and unsplit sides
of stack
</li>
<li>
<kbd>[mod]</kbd> <kbd>Tab</kbd> toggles between layouts
</li>
<li>
<kbd>[mod]</kbd> <kbd>Shift</kbd>
<span
><span><kbd>1</kbd>/</span><span><kbd>2</kbd>/</span
><span><kbd>3</kbd>/</span><span><kbd>4</kbd>/</span
><span><kbd>5</kbd>/</span><span><kbd>6</kbd>/</span
><span><kbd>7</kbd>/</span><span><kbd>8</kbd>/</span
><span><kbd>9</kbd></span></span
>
shifts focused window to the workspace assigned to the ID
</li>
</ul>
</div>
<div>
<h2>Window sizing</h2>
<ul>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>H</kbd> grows window
to the <b>left</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>L</kbd> grows window
to the <b>right</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>J</kbd> grows window
<b>down</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>K</kbd> grows window
<b>up</b>
</li>
<li>
<kbd>[mod]</kbd> <kbd>N</kbd> resets all window sizes
</li>
</ul>
</div>
<div>
<h2>Miscellaneous and launching programs</h2>
<ul>
<li>
<kbd>[mod]</kbd> <kbd>Return</kbd>
launches the terminal (alacritty)
</li>
<li>
<kbd>[mod]</kbd> <kbd>R</kbd> opens the Rofi run launcher
</li>
<li>
<kbd>[mod]</kbd> <kbd>P</kbd> opens the Rofi power menu
</li>
<li>
<kbd>[mod]</kbd> <kbd>B</kbd> launches the web browser
(brave)
</li>
<li>
<kbd>[mod]</kbd> <kbd>C</kbd> launches the file manager
(vifm)
</li>
<li>
<kbd>[mod]</kbd> <kbd>Z</kbd> opens copied PDF URL in
Zathura
</li>
<li>
<kbd>[mod]</kbd> <kbd>Y</kbd> opens copied YouTube URL in
MPV (using yt-dlp)
</li>
<li>
<kbd>[mod]</kbd> <kbd>F</kbd> opens the Flameshot GUI
</li>
<li>
<kbd>[mod]</kbd> <kbd>S</kbd> takes a full screenshot
using Scrot
</li>
<li>
<kbd>[mod]</kbd> <kbd>T</kbd> spawns a command using a
prompt
</li>
<li>
<kbd>[mod]</kbd> <kbd>V</kbd> shows the active windows
through Rofi
</li>
<li>
<kbd>[mod]</kbd> <kbd>D</kbd> sends a notification
including the current date and time
</li>
<li><kbd>[mod]</kbd> <kbd>Q</kbd> kills focused window</li>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>R</kbd> restarts
Qtile
</li>
<li>
<kbd>[mod]</kbd> <kbd>CTRL</kbd> <kbd>Q</kbd> shuts down
Qtile
</li>
</ul>
</div>
</div>
</section>
<hr />
<section id="configs">
<h2>Configs</h2>
<ul class="md:grid md:grid-cols-2 __className_62325b">
<li>
<a
target="_blank"
href="https://github.com/woof-os/iso-profile"
>archiso profile</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/qtile"
>qtile</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/rofi"
>rofi</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/dunst"
>dunst</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/calamares"
>calamares</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/alacritty"
>alacritty</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/starship"
>starship</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/qt5"
>qt5</a
>
</li>
<li>
<a target="_blank" href="https://github.com/woof-os/zshrc"
>zsh</a
>
</li>
<li>
<a
target="_blank"
href="https://github.com/woof-os/tokyonight-gtk"
>gtk theme</a
>
</li>
<li>
<a
target="_blank"
href="https://github.com/woof-os/icon-config"
>icons</a
>
</li>
<li>
<a
target="_blank"
href="https://github.com/woof-os/wallpapers"
>wallpapers</a
>
</li>
</ul>
</section>
<hr />
<section id="gallery">
<h1>Gallery</h1>
<div class="h-full w-full">
<div class="h-full w-full flex justify-center items-center">
<img
alt="main image"
class="h-full w-full"
src="images/qtile/s4.png"
/>
</div>
<div class="w-full grid md:grid-cols-2 gap-2 mt-2">
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s0.png" />
</div>
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s1.png" />
</div>
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s2.png" />
</div>
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s3.png" />
</div>
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s5.png" />
</div>
<div class="h-full w-full flex justify-center items-center">
<img alt="screenshot" src="images/qtile/s6.png" />
</div>
</div>
</div>
</section>
</article>
</div>
</div>
</section>
<footer id="footer" class="border-t border-periwinkle-200">
<div
class="text-wrap break-all prose prose-tokyonight w-screen md:grid md:grid-cols-2 !max-w-full"
>
<section id="contact">
<h2>Contact</h2>
<ul>
<li>
Email: <a
target="_blank"
href="mailto:[email protected]"
>
</li>
<li>
Discord: <a
target="_blank"
href="https://discord.gg/2G2yGUAXUS"
>Woof OS</a
>
</li>
</ul>
<div class="flex flex-col gap-2">
<textarea
maxlength="2000"
class="flex min-h-[60px] w-full border border-mirage-800 bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-mirage-500 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-mirage-500 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm"
id="themessage"
placeholder="Leave a message"
></textarea>
<button
class="border border-mirage-800 inline-flex items-center justify-center whitespace-nowrap text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 bg-transparent text-neutral-800-foreground shadow hover:bg-mirage-800/90 h-9 px-4 py-2"
id="sendbutton"
onclick="sendmessage()"
>
Send :>
</button>
</div>
</section>
<section id="donate">
<h2>Donate</h2>
<ul>
<li>
<strong>Solana: </strong
><span class="text-wrap break-all"
>6BecuGmLuD7JJEbQuV7mNqUNZ3i8WPxNC5zL63oAhRJH</span
>
</li>
<li>
<strong>BuyMeACoffee: </strong
><a target="_blank" href="https://buymeacoffee.com/acutewoof"
>acutewoof</a
>
</li>
</ul>
</section>
</div>
<div
class="mt-6 md:flex md:items-center md:justify-between text-periwinkle-200"
>
<span class="sm:text-center"
>© 2023-2024 Vithushan. All Rights Reserved.</span
><span class="prose prose-tokyonight flex gap-6"
><a target="_blank" href="https://lewoof.xyz">Vithushan (ACuteWoof)</a
><a target="_blank" href="https://github.com/woof-os">Github</a></span
>
</div>
</footer>
</body>
</html>