🌈️ apply a wallpaper based on the weather outside
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: compile to binaries

Angel Wang (Jun 20, 2026, 11:39 PM -0600) eb68ae21 52231902

+4 -2
+4 -2
deno.json
··· 1 1 { 2 2 "tasks": { 3 - "analyze": "zx analyze/index.ts", 4 - "apply": "zx apply/index.ts" 3 + "compile-analyze": "deno compile --output build/analyze -A analyze/index.ts", 4 + "compile-apply": "deno compile --output build/apply -A apply/index.ts", 5 + "analyze": "deno run analyze/index.ts", 6 + "apply": "deno run apply/index.ts" 5 7 }, 6 8 "imports": { 7 9 "@std/assert": "jsr:@std/assert@1"