Open-source alternative of Discord desktop's app.asar
Go to file
Ducko 398b0720dc [Readme] Remove skipStartupUpdateChecks option 2022-02-09 14:31:05 +00:00
.github [CI > Build] Re-enable stripping 2022-02-07 08:17:04 +00:00
polyfills [Poly > Request] Add encoding null support 2022-02-04 20:45:15 +00:00
scripts [Scripts > Strip] Strip JSON files, clean up code 2022-02-08 14:19:38 +00:00
src [Splash > Backend] Clean up source a bit 2022-02-08 19:32:42 +00:00
.gitignore [Gitignore] Add miniSrc for minifying script 2022-01-31 09:13:05 +00:00
LICENSE Initial commit 2021-12-09 11:14:14 +00:00
README.md [Readme] Remove skipStartupUpdateChecks option 2022-02-09 14:31:05 +00:00
faq.md [FAQ] Add snappier info, reorder some 2021-12-21 23:11:47 +00:00
roadmap.md [Roadmap] Redo to use milestones instead of versions, add 2 and 3 2022-01-15 13:56:05 +00:00

README.md

OpenAsar

An experimental open-source alternative of Discord desktop's app.asar

Features

  • 🚀 Startup Speed: ~2x faster startup times (up to ~4x with experimental config)
  • 📈 Performance: OpenAsar can make your client feel snappier (scrolling, switching channels, etc)
  • 🖌️ Splash Theming: Easy theming for your splash which works with most themes for any client mod
  • 🔌 Drop-in: Replace one file and it's installed, that's it (same with uninstall)
  • ⚙️ Configurable: Adds many config options for Discord and OpenAsar enhancements (see config section)
  • 🪶 Lightweight: <1% of Discord's original size (9mb -> ~80kb)
  • 🛡️ No Tracking: Removes Discord's built-in tracking for crashes and errors in the asar (not app itself)

See FAQ for more details


Install Guide

Config

You can configure OpenAsar via settings.json (found in your Discord app data / user data), under a openasar object. Keep in mind most options are defaults for good reason.

OpenAsar Options

  • quickstart (bool, default false) - whether to use Quickstart (experimental)
  • themeSync (bool, default true) - syncs your modded client's theme with splash theming
  • autoupdate (bool, default true) - whether to autoupdate OpenAsar after Discord startup
  • updatePrompt (bool, default false) - whether to show update prompt after updating OpenAsar
  • splashText (bool, default false) - whether to show bottom right version info text in splash

Extra Discord Options

  • multiInstance (bool, default false) - whether to enable multi-instance

An example of a settings.json with OpenAsar config:

{
  "BACKGROUND_COLOR": "#202225",
  "IS_MAXIMIZED": false,
  "IS_MINIMIZED": false,
  "WINDOW_BOUNDS": {
    "x": 801,
    "y": 22,
    "width": 797,
    "height": 876
  },
  "MINIMIZE_TO_TRAY": false,
  "OPEN_ON_STARTUP": false,
  "openasar": {
    "quickstart": true
  }
}

Additionally there are some environmental variables you can use:

  • OPENASAR_QUICKSTART (bool, default false) - same as quickstart config option
  • OPENASAR_NOSTART (bool, default false) - if enabled halts starting after splash loads (for splash testing)