Skip to content

Latest commit

 

History

History

online-playground

online-playground

简体中文

A tray/taskbar app, one-click then navigate to some online programing playground sites.

Snapshot

Compile and Run

  • Modify playground.json file to add or remove some playgrounds.
  • For Windows, you can download release zip file named playground.zip , unzip to some directory, just click playground.exe to run.
  • For Linux and MacOS, you need compile and build yourself.

Some issues about app-icon or compiling problem please ref to systray documentation.

# Compile For Windows
# in Windows Powershell
$env:GOOS='windows'; $env:GOARCH='amd64'; go build -ldflags "-s -w -H=windowsgui" -o playground.exe; $env:GOGS=''; $env:GOARCH='';
# Compile For Linux
GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o playground
# Compile For MacOS, need package to `.app` by yourself, ref to https://github.com/getlantern/systray#macos
GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w" -o playground

Links

Ref