reorganize #17

Merged
sashakoshka merged 53 commits from reorganize into main 2023-05-03 13:42:22 -06:00
Showing only changes of commit 2e3af402d5 - Show all commits

View File

@ -0,0 +1,15 @@
#!/bin/sh
pluginInstallPath="$HOME/.local/lib/nasin/plugins"
mkdir -p build
mkdir -p "$pluginInstallPath"
install() {
go build -buildmode=plugin -o "build/$1.so" "./plugins/$1" && \
cp build/x.so $pluginInstallPath
}
echo "... installing X backend"
install x
echo ".// done"