This commit is contained in:
2026-06-25 09:59:54 +02:00
commit bd2ecd0176
16 changed files with 2069 additions and 0 deletions

17
run-on-windows.cmd Normal file
View File

@@ -0,0 +1,17 @@
@echo off
REM Build + run the Claude Overview widget on Windows.
REM Double-click this from Explorer at \\wsl.localhost\Ubuntu\home\philipp\git\claude-local-overview-display
REM or run it from a Windows terminal (cmd/PowerShell) in this folder.
setlocal
cd /d "%~dp0"
where dotnet >nul 2>nul
if errorlevel 1 (
echo .NET SDK not found. Install it first:
echo winget install Microsoft.DotNet.SDK.8
pause
exit /b 1
)
dotnet run -c Release