Skip to content

0.2.3

Latest

Choose a tag to compare

@github-actions github-actions released this 08 Sep 16:12
· 12 commits to master since this release
fd540e8

Two binaries ship from this release, and they share no state — so
installing logosctl cannot disturb a logoscore setup.

logoscore The tool to use. Commands, flags, config format and ~/.logoscore unchanged.
logosctl logoscore + lgpd + lgpm merged into one, with package management built in. New surface, own ~/.logosctl session directory. Being validated — not yet the default.

The instructions below install logoscore; swap the name throughout
to install logosctl instead.

Install

Linux

The artifact is an AppImage — a single self-contained executable. Download it, extract, and drop it on your PATH (swap x86_64 for aarch64 on ARM):

wget https://github.com/logos-co/logos-logoscore-cli/releases/download/0.2.3/logoscore-x86_64-linux.tar.gz
tar -xvf logoscore-x86_64-linux.tar.gz
mkdir -p ~/.local/bin
install -m755 logoscore-x86_64.AppImage ~/.local/bin/logoscore
# make sure ~/.local/bin is on your PATH (add this to ~/.bashrc or ~/.zshrc):
export PATH="$HOME/.local/bin:$PATH"

Now logoscore runs from anywhere. (If you hit a FUSE error, run it as APPIMAGE_EXTRACT_AND_RUN=1 logoscore.)

macOS (Apple Silicon)

Download from the terminal with wget or curlnot a web browser. Browsers tag downloads with com.apple.quarantine, which makes Gatekeeper block this unsigned binary. Fetching over the terminal and extracting with tar never sets that flag, so the binary runs as-is — no signing or notarization needed.

wget https://github.com/logos-co/logos-logoscore-cli/releases/download/0.2.3/logoscore-aarch64-macos.tar.gz
tar -xvf logoscore-aarch64-macos.tar.gz
# move the whole folder somewhere permanent (keep its contents together —
# the binary finds its libraries via ../lib) and put its bin/ on your PATH:
mv logoscore-aarch64-macos ~/.local/logoscore
echo 'export PATH="$HOME/.local/logoscore/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

Now logoscore runs from anywhere.