nandi/frqpublic Fork 0
563ada3ba5f0066b95bc39e9a63095a09c5f05da
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

justfile · 14 lines · 393 BMakefile Blame HistoryRaw
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago1set shell := ["bash", "-euo", "pipefail", "-c"]
2
3vidya := justfile_directory() + "/../vidya"
4
5default:
6 @just --list
7
8# libvidya (Rust/egui build) — the tree ABI glimmer-vidya binds.
9lib:
10 cd {{vidya}} && just ffi
11
12# The app. Point LD_LIBRARY_PATH at whichever libvidya build you have.
13run *args:
14 LD_LIBRARY_PATH="{{vidya}}/build:{{vidya}}/ffi/target/release" jolt -M:frq {{args}}