https://github.com/rislah/jagex-launcher
Cross-platform Jagex Launcher for OSRS
https://github.com/rislah/jagex-launcher
golang jagex jagex-launcher linux oldschool-runescape osrs rs runelite runescape windows
Last synced: 2 months ago
JSON representation
Cross-platform Jagex Launcher for OSRS
- Host: GitHub
- URL: https://github.com/rislah/jagex-launcher
- Owner: rislah
- License: gpl-3.0
- Created: 2025-07-05T18:45:36.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-06T10:12:55.000Z (about 1 year ago)
- Last Synced: 2025-08-12T13:56:52.489Z (12 months ago)
- Topics: golang, jagex, jagex-launcher, linux, oldschool-runescape, osrs, rs, runelite, runescape, windows
- Language: Go
- Homepage:
- Size: 134 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jagex OSRS Launcher
A cross-platform GUI launcher for Old School RuneScape enables launching RuneLite with different Jagex accounts. Built using Go and the Fyne GUI toolkit.




## Why?
Jagex has explicitly stated that ["The Jagex launcher and Jagex Accounts will not be supported on the Linux OS"](https://help.jagex.com/hc/en-gb/articles/13413514881937). This leaves Wine as the only official alternative, which I don't like.
Furthermore, the official Jagex Launcher is known for its intrusive telemetry collection.
## Getting Started
### Prerequisites
* Go
* A Jagex Account
* RuneLite installed on your system.
### Building from Source
1. **Clone the repository:**
```bash
git clone https://github.com/rislah/jagex-launcher.git
cd jagex-launcher
```
2. **Build the application:**
For Windows:
```bash
go build -o jagex-launcher.exe -ldflags -H=windowsgui
```
For Linux/macOS:
```bash
go build -o jagex-launcher .
```
Alternatively, you can build using the Fyne utility:
For Windows:
```bash
go install fyne.io/tools/cmd/fyne@latest
fyne release -os windows -icon 5.ico
```
For Linux/macOS:
```bash
fyne release -icon 5.ico
```