Compare commits

..

No commits in common. "918bd9748c89f7890b28f6d33fa3660e156cc94d" and "43cfd7a963d56a87e6cbaf61d80fe7a38270eeb0" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
default: default:
guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir -p ./out && typst compile ./src/document.typ ./out/coverletter.pdf --font-path=/usr/share/fonts" guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir -p ./out && typst compile ./src/document.typ ./out/document.pdf --font-path=/usr/share/fonts"
fonts: fonts:
guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- typst fonts --font-path=/usr/share/fonts guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- typst fonts --font-path=/usr/share/fonts
@ -11,4 +11,4 @@ update:
guix time-machine --channels=./channels.scm -- describe --format=channels > ./channels.scm.lock guix time-machine --channels=./channels.scm -- describe --format=channels > ./channels.scm.lock
run: default run: default
xdg-open ./out/coverletter.pdf xdg-open ./out/document.pdf

View file

@ -13,8 +13,8 @@
), ),
recipient: ( recipient: (
name: "name", name: "name",
company: "company", address_1: "a1",
address: "address", address_2: "a2",
city: "city", city: "city",
state: "ST", state: "ST",
zip: "000000", zip: "000000",

View file

@ -11,8 +11,8 @@
), ),
recipient: ( recipient: (
name: "", name: "",
company: "", address_1: "",
address: "", address_2: "",
city: "", city: "",
state: "", state: "",
zip: "", zip: "",
@ -28,7 +28,7 @@
#datetime.today().display("[month repr:long] [day], [year repr:full]") \ #datetime.today().display("[month repr:long] [day], [year repr:full]") \
#recipient.name \ #recipient.name \
#recipient.company \ #recipient.address_1 \
#recipient.address \ #if "address_2" in recipient [#recipient.address_2 \ ]
#recipient.city, #recipient.state #recipient.zip \ \ \ #recipient.city, #recipient.state #recipient.zip \ \ \
] ]