Skip to content

Commit f7f34f9

Browse files
committed
Quartz sync: Nov 26, 2024, 10:36 PM
1 parent bf39459 commit f7f34f9

File tree

9 files changed

+11
-21
lines changed

9 files changed

+11
-21
lines changed

content/MacOS/Window Management.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ tags:
1111
- blog
1212
date: 2024-11-26
1313
---
14+
![[aerospace.png]]
1415
Everybody has windows and I don't mean the operating system. These things that use CPU and RAM and sometimes crash. These want to be positioned somewhere on your screen, but where and what size?
1516

1617
I never had a problem in the past with how Windows and Ubuntu manage this, but then after I finished my apprenticeship I got a MacBook, and it definitely took some getting used to. Some of the windows are not full screen by default and can't be full sized by a click. No split in half, no dragging it to the top to full size it. Why? Because it's Apple. (I think they fixed this with Sequoia, took them long enough)

content/MacOS/images/aerospace.png

925 KB
Loading

quartz.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const config: QuartzConfig = {
2626
cdnCaching: false,
2727
typography: {
2828
header: "Zodiak",
29-
body: "GeneralSans",
29+
body: "Satoshi",
3030
code: "JetBrainsMono",
3131
},
3232
colors: {
71.8 KB
Binary file not shown.
124 KB
Binary file not shown.
34.3 KB
Binary file not shown.
41.6 KB
Binary file not shown.

quartz/styles/custom.scss

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,25 @@
11
@use "./base.scss";
22

33
@font-face {
4-
font-family: 'ClashDisplay';
5-
src: url('/static/fonts/ClashDisplay-Variable.woff2') format('woff2'),
6-
url('/static/fonts/ClashDisplay-Variable.woff') format('woff'),
7-
url('/static/fonts/ClashDisplay-Variable.ttf') format('truetype');
8-
font-weight: 200 700;
9-
font-display: swap;
10-
font-style: normal;
11-
}
12-
13-
@font-face {
14-
font-family: 'GeneralSans';
15-
src: url("/static/fonts/GeneralSans-Variable.woff2") format("woff2"),
16-
url("/static/fonts/GeneralSans-Variable.woff") format("woff"),
17-
url("/static/fonts/GeneralSans-Variable.ttf") format("truetype");
4+
font-family: 'Zodiak';
5+
src: url("/static/fonts/Zodiak-Variable.woff2") format("woff2"),
6+
url("/static/fonts/Zodiak-Variable.woff") format("woff"),
7+
url("/static/fonts/Zodiak-Variable.ttf") format("truetype");
188
font-weight: 200 700;
199
font-display: swap;
2010
font-style: normal;
2111
}
2212

2313
@font-face {
24-
font-family: 'Zodiak';
25-
src: url("/static/fonts/Zodiak-Variable.woff2") format("woff2"),
26-
url("/static/fonts/Zodiak-Variable.woff") format("woff"),
27-
url("/static/fonts/Zodiak-Variable.ttf") format("truetype");
14+
font-family: 'Satoshi';
15+
src: url("/static/fonts/Satoshi-Variable.woff2") format("woff2"),
16+
url("/static/fonts/Satoshi-Variable.woff") format("woff"),
17+
url("/static/fonts/Satoshi-Variable.ttf") format("truetype");
2818
font-weight: 200 700;
2919
font-display: swap;
3020
font-style: normal;
3121
}
3222

33-
3423
@font-face {
3524
font-family: 'JetBrainsMono';
3625
src: url("/static/fonts/JetBrainsMono-Variable.woff2") format("woff2"),

quartz/util/imageHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function getSatoriFont(headerFontName: string, bodyFontName: string
1717

1818
// Fetch fonts
1919
const headerFont = await fs.readFile("quartz/static/fonts/Zodiak-Extrabold.ttf")
20-
const bodyFont = await fs.readFile("quartz/static/fonts/ClashDisplay-Regular.ttf")
20+
const bodyFont = await fs.readFile("quartz/static/fonts/Satoshi-Regular.ttf")
2121
const logoFont = await fs.readFile("quartz/static/fonts/Aktura-Regular.ttf")
2222

2323
// Convert fonts to satori font format and return

0 commit comments

Comments
 (0)