summaryrefslogtreecommitdiff
path: root/docs/guide/libraries/apps.md
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-15 15:30:04 +0200
committerGitHub <[email protected]>2024-10-15 15:30:04 +0200
commitcbe650afb31c24faea6da45b4aeeffc6e964969d (patch)
treed5c3788835ca7e50d68cd023026e7738f39f6f71 /docs/guide/libraries/apps.md
parentbdb23e20f171da7c769cba9e393d7e406e563a78 (diff)
parentbafd48d3df9b43a1d49ec015eff30619d595468b (diff)
Merge pull request #46 from Aylur/small-refactor
Small refactor
Diffstat (limited to 'docs/guide/libraries/apps.md')
-rw-r--r--docs/guide/libraries/apps.md18
1 files changed, 1 insertions, 17 deletions
diff --git a/docs/guide/libraries/apps.md b/docs/guide/libraries/apps.md
index c53daf0..7f9ee6e 100644
--- a/docs/guide/libraries/apps.md
+++ b/docs/guide/libraries/apps.md
@@ -33,21 +33,10 @@ cd astal/lib/apps
3. install
```sh
-meson setup build
-meson install -C build
-```
-
-:::tip
-Most distros recommend manual installs in `/usr/local`,
-which is what `meson` defaults to. If you want to install to `/usr`
-instead which most package managers do, set the `prefix` option:
-
-```sh
meson setup --prefix /usr build
+meson install -C build
```
-:::
-
## Usage
You can browse the [Apps reference](https://aylur.github.io/libastal/apps).
@@ -106,8 +95,3 @@ end
```
:::
-
-:::info
-The fuzzy query uses [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance). I am not a mathematician, but if you know how to reimplement
-the logic of [fzf](https://github.com/junegunn/fzf) to make it better feel free to open PRs.
-:::