14 lines
327 B
Bash
Executable File
14 lines
327 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
echo "Installing takopi from source..."
|
|
uv tool install --editable "$REPO_DIR" --force
|
|
|
|
echo "Restarting takopi service..."
|
|
systemctl --user restart takopi.service
|
|
|
|
echo "Status:"
|
|
systemctl --user status takopi.service --no-pager
|