Pi66

walrs
pywal but if its Fast-Minimal-Simple
git clone https://git.pi66.xyz/walrs

← back to log

Add: auto complete

author: pixel
date: 2025-05-03 21:27
hash: 4d96fca0114af63932c236ceadd4ef51b9734822

Diffstat:

M

Makefile
7 +++++++++++++++++++++---------
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/Makefile b/Makefile
index ba41703..27a6809 100644
--- a/Makefile
+++ b/Makefile
@@ -6,9 +6,12 @@ build:
 install: build
    sudo install -m755 target/release/walrs /usr/bin/walrs
    sudo install -d ./templates/ /etc/walrs/templates
-   /usr/bin/walrs  --install-completions -q
+   /usr/bin/walrs --install-completions -q
    sudo cp -r templates/* /etc/walrs/templates/

+aur:
+   /usr/bin/walrs --install-completions -q
+
 uninstall:
    sudo rm -f /usr/bin/walrs
    sudo rm -rf /etc/walrs/
@@ -17,4 +20,4 @@ uninstall:
 clean:
    cargo clean

-.PHONY: all build install uninstall clean
+.PHONY: all build install uninstall clean aur