Some checks failed
check / check (push) Failing after 52s
M0–M5 ur doc/plan.md: layer-shell-dock per skärm med transparent #222222-ö, pins + körande appar (gruppering, badges, indikatorer), klick/skroll/mittklick, konfigurerbar högerklicksmeny, tomyta-meny, settings-GUI som redigerar JSON-configen live, filewatcher, Wayfire-IPC-stubbar (scale, flytta-till-skärm), CI + release-flöde. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
26 lines
835 B
Bash
26 lines
835 B
Bash
#!/bin/sh
|
|
# En-rads-install av waydock (linux-x64):
|
|
# curl -fsSL https://gitea.brasse-pc.eu/brasse/waydock/raw/branch/master/install.sh | sh
|
|
set -eu
|
|
|
|
BASE=https://gitea.brasse-pc.eu/brasse/waydock
|
|
DEST="${HOME}/.local/bin"
|
|
ARCH=$(uname -m)
|
|
|
|
[ "$ARCH" = "x86_64" ] || { echo "waydock byggs bara för linux-x64 (du har $ARCH)"; exit 1; }
|
|
command -v gtk4-launch >/dev/null 2>&1 || \
|
|
echo "OBS: gtk4 verkar saknas — installera: sudo pacman -S gtk4 gtk4-layer-shell"
|
|
|
|
mkdir -p "$DEST"
|
|
echo "Hämtar waydock (latest)…"
|
|
curl -fSL -o "$DEST/waydock" \
|
|
"$BASE/releases/download/latest/waydock-latest-linux-x64"
|
|
chmod +x "$DEST/waydock"
|
|
|
|
echo "Installerad: $DEST/waydock"
|
|
case ":$PATH:" in
|
|
*":$DEST:"*) ;;
|
|
*) echo "OBS: $DEST ligger inte i PATH" ;;
|
|
esac
|
|
echo "Starta med: waydock (config skapas i ~/.config/waydock/config.json)"
|