diff --git a/src/css/minimalist.css b/src/css/minimalist.css index 2d4326b..8bb596c 100644 --- a/src/css/minimalist.css +++ b/src/css/minimalist.css @@ -359,13 +359,16 @@ nav > a { --todo-txt: #0b0; --link: #080; --yellow: #0f0; - --orange: #0f0; - --red: #0f0; + --orange: #0e0; + --red: #0d0; --magenta: #0f0; --violet: #0f0; --blue: #080; --cyan: #080; --green: #080; + --base03: #020; + --base02: #030; + --base3: #0f0; font-family: monospace; } #matrix:checked ~ .main code, diff --git a/src/index.org b/src/index.org index c1a7e6d..9ba7a06 100644 --- a/src/index.org +++ b/src/index.org @@ -8,8 +8,16 @@ #+OPTIONS: H:5 #+STARTUP: showeverything -#+ATTR_HTML: :style width:120px;display:block;margin-left:auto;margin-right:auto -[[../img/FlatAvatar.png]] +@@html: +
+ + + + + + +
+@@ Welcome to my personal website. I generally talk about programming, maybe movies, or miscellaneous topics. diff --git a/update-file-size.sh b/update-file-size.sh index 99f3a75..e1cdc83 100755 --- a/update-file-size.sh +++ b/update-file-size.sh @@ -17,7 +17,15 @@ toh () { } tmpdir=$(mktemp -d) -for fic in $webdir/**/*.html(.); do + +type -a filelist +if (($#>0)); then + filelist=( $* ) +else + filelist=( $webdir/**/*.html(.) ) +fi + +for fic in $filelist; do print -n -- "$fic " htmlsize=$(sizeof $fic)