feat: init desktop app

This commit is contained in:
Maze Winther
2026-03-29 15:58:42 +02:00
parent d08fbd73e1
commit d862e56e34
12 changed files with 7707 additions and 190 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# Installs the Rust toolchain via rustup.
# Run this before any platform-specific setup script.
set -euo pipefail
CARGO_BIN="$HOME/.cargo/bin/rustup"
if command -v rustup &> /dev/null || [ -f "$CARGO_BIN" ]; then
echo "rustup already installed"
exit 0
fi
echo "Installing rustup..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "Rust installed. Reload your shell: source \"\$HOME/.cargo/env\""