summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorkj_sh6042025-12-20 23:59:56 -0500
committerkj_sh6042025-12-20 23:59:56 -0500
commit285fc5db86b5d75f65e640160b860e20cc827596 (patch)
tree00cbb9d4dab776a3d04b17f6c72c052e4ce0a876 /README.md
parent1aecac2447b2061a09ef75c71eab1b777d36c93f (diff)
feat: initial attempt at PKGBUILD
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 15 insertions, 4 deletions
diff --git a/README.md b/README.md
index fee083b..de6b601 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
1![kjagave logo](./archlinux/kjagave.png)
2
1# kjagave 3# kjagave
2 4
3a color picker inspired by agave, but only with the features I actually used 5a color picker inspired by agave, but only with the features I actually used
@@ -19,18 +21,27 @@ a color picker inspired by agave, but only with the features I actually used
19- gtk3 development libraries 21- gtk3 development libraries
20- `xcolor` or `grabc` for screen color picking 22- `xcolor` or `grabc` for screen color picking
21 23
22## building 24## installation
25
26### arch linux
27
28```bash
29cd archlinux
30makepkg -si
31```
32
33see `archlinux/README.md` for more details.
34
35### manual build
23 36
24```sh 37```sh
25cd src 38cd src
26go mod download 39go mod download
27go build -o ./kjagave main.go 40go build -o ../kjagave main.go
28``` 41```
29 42
30## running 43## running
31 44
32from the src/ directory:
33
34```bash 45```bash
35./kjagave 46./kjagave
36``` 47```