From 50a06120e13ba648fca745951170cef59037e35a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 16 Aug 2024 21:36:50 -0400 Subject: Add ability to specify camera body --- www/photo.causal.agency/generate.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'www') diff --git a/www/photo.causal.agency/generate.sh b/www/photo.causal.agency/generate.sh index fbc3efd6..26279229 100644 --- a/www/photo.causal.agency/generate.sh +++ b/www/photo.causal.agency/generate.sh @@ -41,8 +41,11 @@ page_title() { page_head() { local date=$1 local title=$(page_title $date) - local lens film + local body lens film + if test -f $date/body; then + body=$(encode $date/body) + fi if test -f $date/lens; then lens=$(encode $date/lens) else @@ -75,7 +78,7 @@ page_head() { details { max-width: 78ch; margin: 0.5em auto; }

${title}

-

๐Ÿ“ท ${lens}${film:+ ๐ŸŽž๏ธ }${film:-}

+

๐Ÿ“ท ${body:-}${body:+ ยท }${lens}${film:+ ๐ŸŽž๏ธ }${film:-}

EOF } -- cgit 1.4.1 href='/src/refs/?id=e9834a80ca32c65c8341558ce73c46ff5319e628'>refs log tree commit diff
path: root/bin/fbatt.c (unfollow)
Commit message (Collapse)Author
2018-04-02Highlight Special as NormalJune McEnroe
Special characters in strings are more like normal code than keywords.
2018-04-02Use size_t for iterating in schemeJune McEnroe
2018-04-02Modulo H and saturate S, V in schemeJune McEnroe
2018-04-02Rewrite scheme in a more sensible orderJune McEnroe
2018-04-02Use function pointers in schemeJune McEnroe
2018-04-02Use union for scheme gen functionsJune McEnroe
2018-04-02Use uint32_t for len in schemeJune McEnroe
There are potentially 256 colours.
2018-04-01Add HSV output to schemeJune McEnroe
2018-03-31Output Linux console escapes from schemeJune McEnroe
2018-03-31Add scheme to READMEJune McEnroe
2018-03-31Brighten color schemeJune McEnroe
2018-03-31Set Dark terminal to schemeJune McEnroe
2018-03-31Lighten cursor colorJune McEnroe
2018-03-31Tweak cyan furtherJune McEnroe
It's actually green at this point.
2018-03-31Tweak colors in schemeJune McEnroe
2018-03-31Add scheme.png targetJune McEnroe
2018-03-31Generate Terminal.app color schemeJune McEnroe
Colors still very much WIP, but coming along.
2018-03-31Generate basic ANSI color schemeJune McEnroe
2018-03-31Add hex output to schemeJune McEnroe
2018-03-31Add color scheme PNG generatorJune McEnroe
2018-03-31Simplify gfxx palette generationJune McEnroe
2018-03-31Switch to HSV for gfxx palette generationJune McEnroe
2018-03-30Generate default palette in gfxxJune McEnroe
2018-03-30Ignore build and cloneJune McEnroe
2018-03-30Set g:clipboard to pb{copy,paste} alwaysJune McEnroe
Previously neovim would use these automatically if it found them, but now it only checks for them on macOS. pbd continues to work well.
2018-03-28Add d-_-b crateJune McEnroe