This repository was archived by the owner on Jul 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
544 lines (510 loc) · 22.9 KB
/
Copy pathindex.html
File metadata and controls
544 lines (510 loc) · 22.9 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
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<!--
=============================================================================
BASHparaphernalia Website (index.html)
=============================================================================
WHAT: Landing page hub for BASHparaphernalia automation script toolkit
WHY: Multi-page structure keeps landing clean while detailed documentation
lives on individual script pages for scalability and maintainability
HOW: Semantic HTML5 with theme-aware styling; each script card links to
dedicated documentation page with full details, demos, and examples
NOTE: Individual script pages stored in scripts/ directory; theme toggle
uses localStorage for persistence across all pages
=============================================================================
-->
<!doctype html>
<html lang="en">
<head>
<!-- =========================================================================
METADATA & BROWSER CONFIGURATION
=========================================================================
WHAT: HTML document setup and browser metadata
WHY: Ensures proper encoding, responsive design, and browser detection
HOW: Standard HTML5 meta tags and viewport configuration
======================================================================== -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="BASHparaphernalia: A curated collection of advanced automation scripts for Linux systems with comprehensive documentation and installation guides"
/>
<!-- =========================================================================
STYLING & ICONS
=========================================================================
WHAT: External stylesheet and favicon configuration
WHY: Separates presentation logic and provides consistent theming across
all pages; favicons improve brand recognition
HOW: Links to external CSS file and multiple favicon formats for
different devices and browsers
======================================================================== -->
<link rel="stylesheet" href="style.css" />
<!-- Favicon and App Icons -->
<link
rel="icon"
type="image/png"
href="/assets/icons/favicon-96x96.png"
sizes="96x96"
/>
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg" />
<link rel="shortcut icon" href="/assets/icons/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/icons/apple-touch-icon.png"
/>
<meta name="apple-mobile-web-app-title" content="Mattastic" />
<link rel="manifest" href="/assets/icons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="theme-color" content="#282a36" />
<title>$!BASHparaphernalia - Advanced Linux Automation Scripts</title>
</head>
<!-- =========================================================================
BODY CONTENT
=========================================================================
WHAT: Main visible content of the webpage
WHY: Structured sections provide project overview and script navigation
HOW: Semantic HTML5 elements (header, main, footer) with project cards
and links to individual script documentation pages
======================================================================== -->
<body>
<!-- =========================================================================
HEADER SECTION: Branding, Navigation, and Project Metadata
=========================================================================
WHAT: Top of page with project title, banner, badges, and theme toggle
WHY: Establishes brand identity and provides quick access to key
resources and metadata
HOW: Displays banner image, repository stats, and links to GitHub/portfolio
======================================================================== -->
<header>
<!-- Theme Toggle Button -->
<button id="theme-toggle" aria-label="Toggle light/dark theme">🌞</button>
<!-- Project Banner -->
<img
class="banner"
id="banner-img"
alt="BASHparaphernalia Banner"
src="./assets/banner-light.png"
/>
<!-- Project Title and Subtitle -->
<h1>$!BASHparaphernalia</h1>
<h2>
Advanced automation scripts for Linux system administration and workflow
optimization
</h2>
<!-- Project Metadata Badges -->
<div class="buttons">
<img
alt="Last Commit"
src="https://img.shields.io/github/last-commit/TheOnliestMattastic/BASHparaphernalia?color=bd93f9&style=for-the-badge&labelColor=6272a4"
/>
<img
alt="Repository Size"
src="https://img.shields.io/github/repo-size/TheOnliestMattastic/BASHparaphernalia?color=bd93f9&style=for-the-badge&labelColor=6272a4"
/>
<img
alt="Code Size"
src="https://img.shields.io/github/languages/code-size/TheOnliestMattastic/BASHparaphernalia?color=bd93f9&style=for-the-badge&labelColor=6272a4"
/>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia"
target="_blank"
><img
alt="GitHub Repository"
src="https://img.shields.io/badge/GitHub-Repository-bd93f9?style=for-the-badge&logo=github&logoColor=white&labelColor=6272a4"
/></a>
<img
alt="License: CC BY-SA 4.0"
src="https://img.shields.io/badge/License-CC%20BY--SA%204.0-bd93f9?style=for-the-badge&logo=creativecommons&logoColor=white&labelColor=6272a4"
/>
<a href="https://theonliestmattastic.github.io/" target="_blank"
><img
alt="Portfolio Website"
src="https://img.shields.io/badge/Portfolio-Visit-bd93f9?style=for-the-badge&logo=githubpages&logoColor=white&labelColor=6272a4"
/></a>
<a href="https://github.com/theonliestmattastic" target="_blank"
><img
alt="GitHub Profile"
src="https://img.shields.io/badge/GitHub-Profile-bd93f9?style=for-the-badge&logo=github&logoColor=white&labelColor=6272a4"
/></a>
</div>
</header>
<!-- =========================================================================
MAIN CONTENT: Project Hub with Script Navigation
=========================================================================
WHAT: Overview and navigation cards for each script documentation page
WHY: Provides users with brief summaries and links to detailed docs;
keeps landing page clean while scaling to many scripts
HOW: Each script gets a card with brief description and link to full
documentation page in scripts/ directory
======================================================================== -->
<main>
<!-- =====================================================================
OVERVIEW CARD: Project Introduction
===================================================================== -->
<div class="project-card">
<h2>🔭 Overview</h2>
<p>
Welcome to <strong>$!BASHparaphernalia</strong>
— a professional collection of automation scripts designed to
streamline Linux system administration and personal workflows. Each
script addresses real-world challenges and demonstrates advanced Bash
techniques including configuration management, terminal orchestration,
error handling, and user interaction patterns.
</p>
<p>
This toolkit showcases not just automation capabilities, but also
clean architecture, professional documentation (using
WHAT/WHY/HOW/NOTE patterns), cross-platform compatibility, and
attention to user experience.
</p>
</div>
<!-- =====================================================================
SCRIPT CARDS: Navigation Hub with Summaries
===================================================================== -->
<div class="project-card">
<h2>🐧 NEWbara.sh</h2>
<p><strong>System Bootstrap Automation for Nobara/Fedora</strong></p>
<p>
Configuration-driven system bootstrap with DNF and Flatpak package
management. Features automatic visual feedback, dry-run safety, and
external configuration files for flexible deployment.
</p>
<p class="buttons card">
<a href="./scripts/NEWbara/newbara.html"
><img
alt="View Documentation"
src="https://img.shields.io/badge/Docs-View-bd93f9?style=for-the-badge&logo=readme&logoColor=white&labelColor=6272a4"
/></a>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia/blob/main/scripts/NEWbara/NEWbara.sh"
target="_blank"
><img
alt="View Source"
src="https://img.shields.io/badge/Code-GitHub-bd93f9?logo=github&logoColor=white&style=for-the-badge&labelColor=6272a4"
/></a>
</p>
</div>
<div class="project-card">
<h2>☁️ MTrclone.sh</h2>
<p><strong>Cloud Storage Mount Automation</strong></p>
<p>
Seamless mounting of OneDrive, Google Drive, and Dropbox using rclone.
Provides multi-account support, automatic directory creation, mount
verification, and real-time feedback with visual notifications.
</p>
<p class="buttons card">
<a href="./scripts/MTrclone/mtrclone.html"
><img
alt="View Documentation"
src="https://img.shields.io/badge/Docs-View-bd93f9?style=for-the-badge&logo=readme&logoColor=white&labelColor=6272a4"
/></a>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia/blob/main/scripts/MTrclone/MTrclone.sh"
target="_blank"
><img
alt="View Source"
src="https://img.shields.io/badge/Code-GitHub-bd93f9?logo=github&logoColor=white&style=for-the-badge&labelColor=6272a4"
/></a>
</p>
</div>
<div class="project-card">
<h2>🌈 LOGme.sh</h2>
<p><strong>Terminal-Based Login Enhancement</strong></p>
<p>
Sophisticated wezterm split-pane orchestration with OpenRGB lighting,
cbonsai visualization, fortune messages, and concurrent task
execution. Includes smart autostart detection for both KDE and GNOME.
</p>
<p class="buttons card">
<a href="./scripts/LOGme/logme.html"
><img
alt="View Documentation"
src="https://img.shields.io/badge/Docs-View-bd93f9?style=for-the-badge&logo=readme&logoColor=white&labelColor=6272a4"
/></a>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia/blob/main/scripts/LOGme/LOGme.sh"
target="_blank"
><img
alt="View Source"
src="https://img.shields.io/badge/Code-GitHub-bd93f9?logo=github&logoColor=white&style=for-the-badge&labelColor=6272a4"
/></a>
</p>
</div>
<div class="project-card">
<h2>🤖 DONtype.sh</h2>
<p><strong>In-Game Keybinding Automation</strong></p>
<p>
Automated keybinding setup for Schedule I using xdotool. Maps function
keys to teleport locations and utility commands with countdown
feedback and error recovery. Completes setup in ~20 seconds.
</p>
<p class="buttons card">
<a href="./scripts/DONtype/dontype.html"
><img
alt="View Documentation"
src="https://img.shields.io/badge/Docs-View-bd93f9?style=for-the-badge&logo=readme&logoColor=white&labelColor=6272a4"
/></a>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia/blob/main/scripts/DONtype/DONtype.sh"
target="_blank"
><img
alt="View Source"
src="https://img.shields.io/badge/Code-GitHub-bd93f9?logo=github&logoColor=white&style=for-the-badge&labelColor=6272a4"
/></a>
</p>
</div>
<div class="project-card">
<h2>🔄 COWcase.sh</h2>
<p><strong>Batch File/Directory Case Conversion</strong></p>
<p>
Standardizes file and directory naming with flexible case conversion.
Supports selective processing (files/directories), custom paths, and
optional visual feedback. Zero dependencies required.
</p>
<p class="buttons card">
<a href="./scripts/COWcase/cowcase.html"
><img
alt="View Documentation"
src="https://img.shields.io/badge/Docs-View-bd93f9?style=for-the-badge&logo=readme&logoColor=white&labelColor=6272a4"
/></a>
<a
href="https://github.com/TheOnliestMattastic/BASHparaphernalia/blob/main/scripts/COWcase/COWcase.sh"
target="_blank"
><img
alt="View Source"
src="https://img.shields.io/badge/Code-GitHub-bd93f9?logo=github&logoColor=white&style=for-the-badge&labelColor=6272a4"
/></a>
</p>
</div>
<!-- =====================================================================
QUICK START: Installation Instructions
===================================================================== -->
<div class="project-card">
<h2>🚀 Quick Start</h2>
<pre class="code"><code># Clone the repository
git clone https://github.com/TheOnliestMattastic/BASHparaphernalia.git
cd BASHparaphernalia
# Make all scripts executable
chmod +x scripts/*/*.sh
# View a script's detailed documentation
# Visit the individual script pages (linked above)</code>
</pre>
<p>
Each script has dedicated documentation with full installation guides,
configuration examples, and troubleshooting. Click "Docs" on any
script card above.
</p>
</div>
<!-- =====================================================================
DOCUMENTATION STANDARDS: Code Quality and Patterns
===================================================================== -->
<div class="project-card">
<h2>📚 Documentation Standards</h2>
<h3>Code Comments (WHAT/WHY/HOW/NOTE)</h3>
<p>
All scripts follow professional comment patterns for clarity and
maintainability:
</p>
<ul>
<li><strong>WHAT:</strong> Description of what the section does</li>
<li>
<strong>WHY:</strong> Explanation of why it's needed or designed
this way
</li>
<li>
<strong>HOW:</strong> Technical explanation of implementation
details
</li>
<li>
<strong>NOTE:</strong> Optional gotchas, alternatives, or important
reminders
</li>
</ul>
<h3>Architecture & Design</h3>
<ul>
<li>
<strong>Configuration Files:</strong> External configuration for
flexibility and team standardization
</li>
<li>
<strong>Error Handling:</strong> Graceful error recovery with clear
user feedback
</li>
<li>
<strong>Visual Feedback:</strong> Real-time progress indicators and
colorful output
</li>
<li>
<strong>Safety-First:</strong> Dry-run modes, validation checks, and
non-destructive operations
</li>
</ul>
<h3>License</h3>
<p>
All scripts are distributed under the
<a
href="https://creativecommons.org/licenses/by-sa/4.0/"
target="_blank"
>Creative Commons Attribution-ShareAlike 4.0 International License
(CC-BY-SA-4.0)</a
>.
</p>
</div>
<!-- =====================================================================
RECRUITER'S NOTE: Portfolio Context and Skill Demonstration
===================================================================== -->
<div class="project-card">
<h2>🪐 Recruiter's Note</h2>
<p>
This project demonstrates not just automation capabilities, but a
complete professional development approach. Each script evolved from
solving real-world challenges and showcases:
</p>
<h3>Technical Skills</h3>
<ul>
<li>
<strong>Advanced Bash:</strong> Error handling, logging, user
interaction, configuration management
</li>
<li>
<strong>System Administration:</strong> Package management (DNF,
Flatpak), service configuration, terminal orchestration
</li>
<li>
<strong>Software Architecture:</strong> External configuration
files, modular design, graceful error recovery
</li>
<li>
<strong>Cross-Tool Integration:</strong> Coordinating multiple
utilities (rclone, OpenRGB, wezterm, xdotool)
</li>
<li>
<strong>Professional Documentation:</strong> WHAT/WHY/HOW/NOTE
patterns, comprehensive guides, user-friendly interfaces
</li>
</ul>
<h3>Development Approach</h3>
<ul>
<li>
<strong>Iterative Improvement:</strong> Scripts evolved from simple
solutions to robust, feature-rich tools
</li>
<li>
<strong>Testing & Debugging:</strong> Real-world usage leading to
improved error handling and reliability
</li>
<li>
<strong>Version Control:</strong> Meaningful conventional commits
and clear repository organization
</li>
<li>
<strong>User-Centered Design:</strong> Help systems, validation
checks, clear feedback, graceful degradation
</li>
</ul>
<p>
This toolkit reflects the methodical, user-focused approach I bring to
IT support, system administration, and software development roles:
resourceful, detail-oriented, and committed to creating solutions that
work reliably in production environments.
</p>
</div>
<!-- =====================================================================
CONTACT: Professional and Social Links
===================================================================== -->
<div class="project-card">
<h2>👽 Get In Touch</h2>
<p>
Curious about my projects? Want to collaborate, discuss ideas, or
explore opportunities for entry-level IT/support/dev roles? I respond
quickly and love working on meaningful challenges.
</p>
<div class="buttons card">
<a href="https://theonliestmattastic.github.io/" target="_blank"
><img
alt="Visit Portfolio"
src="https://img.shields.io/badge/Portfolio-Visit-bd93f9?style=for-the-badge&logo=githubpages&logoColor=white&labelColor=6272a4"
/></a>
<a href="https://github.com/theonliestmattastic" target="_blank"
><img
alt="GitHub Profile"
src="https://img.shields.io/badge/GitHub-Profile-bd93f9?style=for-the-badge&logo=github&logoColor=white&labelColor=6272a4"
/></a>
<a href="mailto:matthew.poole485@gmail.com"
><img
alt="Email: matthew.poole485@gmail.com"
src="https://img.shields.io/badge/Email-matthew.poole485%40gmail.com-bd93f9?style=for-the-badge&logo=gmail&logoColor=white&labelColor=6272a4"
/></a>
</div>
</div>
</main>
<!-- =========================================================================
FOOTER: Inspirational Quote and Copyright Information
=========================================================================
WHAT: Bottom of page with quote and closing message
WHY: Provides inspirational context and maintains professional tone
HOW: Simple footer element with styled quote
======================================================================== -->
<footer>
<p>
<q
><em
>Sometimes the questions are complicated and the answers are
simple.</em
></q
>
— Dr. Seuss
</p>
</footer>
<!-- =========================================================================
JAVASCRIPT: Theme Toggle and Persistence
=========================================================================
WHAT: Client-side theme switching with localStorage persistence
WHY: Respects user's color preference across page reloads and all pages
HOW: Checks for saved preference, applies appropriate class, stores choice
NOTE: Uses data-theme attribute on HTML element for CSS theme switching
======================================================================== -->
<script>
(function () {
const themeToggle = document.getElementById("theme-toggle");
const htmlElement = document.documentElement;
// Check for saved theme preference or default to system preference
const savedTheme = localStorage.getItem("theme") || "system";
const prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)",
).matches;
const initialTheme =
savedTheme === "system"
? prefersDark
? "dark"
: "light"
: savedTheme;
function updateToggleEmoji(theme) {
themeToggle.textContent = theme === "dark" ? "🌙" : "🌞";
}
function updateBannerImages(theme) {
const bannerImg = document.getElementById("banner-img");
if (bannerImg) {
const filename =
theme === "dark" ? "banner-dark.png" : "banner-light.png";
const newSrc = bannerImg.src.replace(
/assets\/banner-(dark|light)\.png(\?.*)?/,
"assets/" + filename + "?t=" + Date.now(),
);
bannerImg.src = newSrc;
}
}
htmlElement.setAttribute("data-theme", initialTheme);
updateToggleEmoji(initialTheme);
updateBannerImages(initialTheme);
themeToggle.addEventListener("click", () => {
const currentTheme = htmlElement.getAttribute("data-theme");
const newTheme = currentTheme === "dark" ? "light" : "dark";
htmlElement.setAttribute("data-theme", newTheme);
localStorage.setItem("theme", newTheme);
updateToggleEmoji(newTheme);
updateBannerImages(newTheme);
});
})();
</script>
</body>
</html>