Skip to content

Commit 2c87ae0

Browse files
committed
Yet more rewriting!
The installation guide is fully updated after I set up Secure Boot and full disk encryption. The separate Secure Boot guide focusing on GRUB is left but with a note that it's not super relevant for my setups anymore. I also fixed tables in dark mode and removed some now unused styles.
1 parent 1a0fbd7 commit 2c87ae0

File tree

5 files changed

+130
-550
lines changed

5 files changed

+130
-550
lines changed

css/style.css

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ pre, code {
6464
font-size: 10pt;
6565
line-height: 1.3;
6666
}
67+
.content table {
68+
font: 1rem/1.6 "EB Garamond", serif;
69+
table-layout: auto;
70+
width: 100%;
71+
}
6772

6873
/* Images */
6974
#main img {
@@ -188,24 +193,6 @@ figure {
188193
margin: 1em 0;
189194
}
190195

191-
/* Callout boxen */
192-
div.warning, div.info {
193-
padding: 0.3em;
194-
margin-bottom: 1em;
195-
}
196-
div.warning {
197-
background-color: #bf616aa0;
198-
border: 1px solid #bf2938;
199-
}
200-
div.info {
201-
background-color: #88c0d0a0;
202-
border: 1px solid #4bb3d0;
203-
}
204-
div.warning p, div.info p {
205-
margin: 0;
206-
line-height: 1.3;
207-
}
208-
209196
/* Tables AHHHH */
210197
table {
211198
margin-bottom: 1em;
@@ -215,6 +202,14 @@ table {
215202
/* Dark Mode */
216203
/*************************************************************/
217204

205+
/* Fix tables */
206+
table {
207+
border: 1px solid #d7d7d7;
208+
}
209+
table > tbody > tr > * {
210+
border-right: none !important;
211+
border: 1px solid #d7d7d7;
212+
}
218213
/* Hopefully everything can be in one query */
219214
@media (prefers-color-scheme: dark) {
220215
html {
@@ -241,4 +236,18 @@ table {
241236
menu[role="tablist"] button {
242237
color: #f0f0f0;
243238
}
239+
div.info {
240+
background-color: #81a1c190;
241+
}
242+
table {
243+
background-color: var(--w7-surface);
244+
border: 1px solid var(--w7-el-bd);
245+
}
246+
table > thead > tr > * {
247+
background: linear-gradient(180deg, var(--w7-el-bg) 45%, var(--w7-el-bg-s-1) 0, var(--w7-el-bg-s-2));
248+
border: 1px solid var(--w7-el-bd);
249+
}
250+
table > tbody > tr > * {
251+
border: 1px solid var(--w7-el-bd);
252+
}
244253
}

images/my-arch-setup.jpg

-160 KB
Loading

index.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Cool stuff I've made. Check my <a target="_blank" href="https://github.com/ejsno
121121

122122
**Created Jan 7, 2026**
123123

124-
<p style="margin: 0.5em 0 0">My preferred Linux setup on KDE Plasma. Wallpapers/panel layout not included.</p>
124+
<p style="margin: 0.5em 0 0">My configs for KDE Plasma on Arch Linux. Wallpapers/panel layout not included.</p>
125125
<p style="text-align: right"><a href="https://github.com/ejsnow/dotfiles">Github repo ↗</a>
126126
</div>
127127
</div>
@@ -135,23 +135,21 @@ Documents I have here for future reference. Mainly guides for setting up Linux c
135135

136136
## Linux stuff
137137

138-
<div class="grid-container">
139-
<div class="grid-item">
138+
<section>
140139

141-
### Arch Linux Installation
140+
### Arch Linux Installation (including LUKS encryption with TPM2 and Secure Boot)
142141

143-
**Last updated Feb 25, 2026**
144-
<p style="margin-top: 0.5em">A guide to installing Arch Linux on a PC, but personalized. Based on the official installation guide and combining information from several other ArchWiki pages. Currently entirely complete. NOT a generic Arch install guide.</p>
142+
**Last updated Mar 6, 2026**
143+
<p style="margin-top: 0.5em">A guide documenting my preferred route for installing Arch Linux, including full disk encryption and Secure Boot support. Mostly just in case I ever have to do a full reinstall or I'm setting up a new PC.</p>
145144
<p style="text-align: right"><a href="resources/archlinux-installation">View</a></p>
146-
</div>
147-
<div class="grid-item">
145+
</section>
146+
<section>
148147

149-
### Using Secure Boot on Linux
148+
### Using Secure Boot on Linux with GRUB
150149

151-
**Last updated Feb 25, 2026**
152-
<p style="margin-top: 0.5em">I recently set up Secure Boot on Twilight (my laptop) and the ArchWiki's documentation was a little confusing (partly because of having to support multiple bootloaders) so here's a more concise guide that only deals with GRUB.</p>
150+
**Last updated Mar 4, 2026**
151+
<p style="margin-top: 0.5em">I recently set up Secure Boot on Twilight (my laptop) and the ArchWiki's documentation was a little confusing so here's a more concise guide that only deals with GRUB. NOTE: I actually switched to systemd-boot but I'm leaving this here in the hopes that this is somewhat useful to someone else :)</p>
153152
<p style="text-align: right"><a href="resources/using-secure-boot-on-arch">View</a></p>
154-
</div>
155-
</div>
153+
</section>
156154

157155
</article>

0 commit comments

Comments
 (0)