summaryrefslogtreecommitdiff
path: root/compfy/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'compfy/deploy.sh')
-rwxr-xr-xcompfy/deploy.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/compfy/deploy.sh b/compfy/deploy.sh
new file mode 100755
index 0000000..3a598cb
--- /dev/null
+++ b/compfy/deploy.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+wd="$HOME/.local/src/compfy"
+
+[ ! -d "$HOME/.local/src" ] && mkdir -p "$wd"
+
+rm -rf "$wd"
+git clone https://github.com/allusive-dev/compfy "$wd"
+
+patch -d "$wd" -p1 -i $(realpath uncomment_sliding_animation.patch)
+
+cd "$wd"
+meson build && meson compile -C build && doas meson install -C build
+cd -