docs: add source install + dev instructions, bump Node to 26
Build and Test / build (push) Successful in 44s
Build and Test / release (push) Successful in 4s

This commit is contained in:
Lucas Oskorep
2026-09-07 14:16:28 -04:00
parent 2fa02eac85
commit c9ef3f404a
2 changed files with 60 additions and 1 deletions
+59
View File
@@ -28,3 +28,62 @@ MacOS tiling WMs, mainly [Aerospace](https://github.com/nikitabobko/AeroSpace) (
- complicated window dragging features and uis
- Aerospace supports control + drag to combine windows while moving with the mouse, and normal window dragging.
## Installation
Aerospike isn't on the GNOME extension store yet, so install it from source.
This builds the extension locally and drops it into your user's extension dir.
Requires [just](https://github.com/casey/just) as the command runner.
Arch Linux:
```bash
sudo pacman -S git just
```
Clone and install:
```bash
git clone https://github.com/lucasoskorep/aerospike-gnome
cd aerospike-gnome
just install
```
After installing from source, enable it (toggle in the Extensions app, or):
```bash
gnome-extensions enable aerospike@lucaso.io
```
Re-login or restart the shell (`Alt+F2``r` on X11) to pick it up.
## Development
Building and debugging locally needs a few extra tools:
- `just` — the command runner
- `fnm` — fast node version manager (the build runs on Node via pnpm)
- `glib2` — provides `glib-compile-schemas` for compiling the settings schema
Arch Linux:
```bash
sudo pacman -S just fnm glib2
```
Set up the Node runtime with fnm (the pinned version lives in `.node-version`):
```bash
fnm install
fnm use
```
Then:
```bash
just install # install deps + build + drop into the extension dir
just lint # lint
just test # run the test suite
just test-watch # run tests in watch mode
just live-debug # tail gnome-shell logs while you poke at it
```