Skip to content

Commit 036f8bc

Browse files
Merge pull request #1 from zackerthescar/handroll_theme
Change the theme
2 parents e66ace5 + 38a1441 commit 036f8bc

67 files changed

Lines changed: 1489 additions & 584 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

2 KB
Binary file not shown.

.direnv/bin/nix-direnv-reload

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#!/usr/bin/env bash
22
set -e
3-
if [[ ! -d "/home/zackerthescar/Projects/site-source" ]]; then
3+
if [[ ! -d "/Users/zackerthescar/Projects/site-source" ]]; then
44
echo "Cannot find source directory; Did you move it?"
5-
echo "(Looking for "/home/zackerthescar/Projects/site-source")"
5+
echo "(Looking for "/Users/zackerthescar/Projects/site-source")"
66
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
77
exit 1
88
fi
99

1010
# rebuild the cache forcefully
11-
_nix_direnv_force_reload=1 direnv exec "/home/zackerthescar/Projects/site-source" true
11+
_nix_direnv_force_reload=1 direnv exec "/Users/zackerthescar/Projects/site-source" true
1212

1313
# Update the mtime for .envrc.
1414
# This will cause direnv to reload again - but without re-building.
15-
touch "/home/zackerthescar/Projects/site-source/.envrc"
15+
touch "/Users/zackerthescar/Projects/site-source/.envrc"
1616

1717
# Also update the timestamp of whatever profile_rc we have.
1818
# This makes sure that we know we are up to date.
19-
touch -r "/home/zackerthescar/Projects/site-source/.envrc" "/home/zackerthescar/Projects/site-source/.direnv"/*.rc
19+
touch -r "/Users/zackerthescar/Projects/site-source/.envrc" "/Users/zackerthescar/Projects/site-source/.direnv"/*.rc

.direnv/flake-inputs/8hzp2ran0rqixlk37rfdyq4jpnmf3b6a-source

Lines changed: 0 additions & 1 deletion
This file was deleted.

.direnv/flake-inputs/j1gyl8d2plw0izv8vp53i8appm7sp0wp-source

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/nh69hr39m1jffrv1q0q449qg4wd4aff4-source
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/nix/store/w1s1rr40z606fyb7y9skaa31nrh1yz1c-nix-shell-env
1+
/nix/store/a7as7bpkjzxv785bccr92453kya1vs91-nix-shell-env

.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc

Lines changed: 163 additions & 106 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
public/
22
*.swp
33
flake.lock
4+
.direnv

config.toml

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ base_url = "https://zackerthescar.com"
33

44
# The site title and description; used in feeds by default.
55
title = "r/c/s"
6-
description = "r/c/s blog of whatever"
7-
8-
# The site theme to use.
9-
theme = "terminimal"
6+
description = "r/c/s streams of thought"
107

118
# Whether to automatically compile all Sass files in the sass directory
129
compile_sass = true
@@ -35,25 +32,23 @@ use_full_hack_font = true
3532
logo_text = "r/c/s"
3633
author = "r/c/s"
3734

38-
# Enable pagination
39-
enable_post_view_navigation = true
40-
post_view_navigation_prompt = "Read more"
41-
42-
# Change color to green
43-
accent_color = "green"
44-
background_color = "blue"
45-
4635
# Menu items
4736
menu_items = [
48-
{name = "home", url = "$BASE_URL"},
49-
{name = "about me", url = "$BASE_URL/about"},
50-
{name = "csci8980-pfpl", url = "$BASE_URL/csci8980-s25"},
51-
{name = "archive", url = "$BASE_URL/archive"},
52-
{name = "resume", url = "$BASE_URL/docs/resume_shaunloo.pdf"},
53-
{name = "links", url = "$BASE_URL/links"},
54-
{name = "GitHub", url = "https://github.com/zackerthescar", newtab = true},
37+
{name = "home", url = "$BASE_URL", color = "caithe"},
38+
{name = "about me", url = "$BASE_URL/about", color = "tayne" },
39+
{name = "blog", url = "$BASE_URL/blog", color = "naia"},
40+
{name = "csci8980-pfpl", url = "$BASE_URL/csci8980-s25", color = "komi" },
41+
{name = "archive", url = "$BASE_URL/archive", color = "lana" },
42+
{name = "resume", url = "$BASE_URL/docs/resume_shaunloo.pdf", color = "yasmi" },
43+
{name = "links", url = "$BASE_URL/links", color = "wikitori" },
44+
{name = "GitHub", url = "https://github.com/zackerthescar", newtab = true, color = "watchdog" },
5545
]
5646

47+
# "Listening to" widget in the left, would be nice if
48+
# we could automate this by pulling some bandcamp thing
49+
listening_to = { artist = "bit depth", release = "herdbound",link = "https://bitdepth.bandcamp.com/album/herdbound", img = "https://f4.bcbits.com/img/a1269997044_10.jpg"}
50+
51+
# 88x31s
5752
88x31 = [
5853
{name = "macos", img = "macos.gif", url = "https://apple.com/macos"},
5954
{name = "debian", img = "debian.gif", url = "https://www.debian.org/"},

content/_index.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
+++
22
# number of pages to paginate by
3-
paginate_by = 2
3+
paginate_by = 0
4+
render = true
5+
+++
6+
7+
## Hiii!
8+
9+
I'm **r/c/s**!
410

5-
# sorting order for pagination
6-
sort_by = "date"
11+
More about me [here](/about). If you're an employer,
12+
[check out my resume!](/docs/resume_shaunloo.pdf)
713

8-
+++
14+
I've been known to write my thoughts down sometimes. You can find them
15+
[here](/blog).

0 commit comments

Comments
 (0)