https://github.com/oOthkOo/whatsapp-desktop
Unofficial WhatsApp Desktop Client for OSX, Linux and Windows. Build with Electron.
https://github.com/oOthkOo/whatsapp-desktop
debian debian-packages desktop electron facebook linux macos message messager messaging osx statuses texting tray-icon ubuntu whatsapp whatsapp-client whatsapp-desktop whatsapp-web windows
Last synced: about 1 month ago
JSON representation
Unofficial WhatsApp Desktop Client for OSX, Linux and Windows. Build with Electron.
- Host: GitHub
- URL: https://github.com/oOthkOo/whatsapp-desktop
- Owner: oOthkOo
- License: gpl-3.0
- Created: 2018-05-21T09:28:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-14T13:09:19.000Z (about 1 year ago)
- Last Synced: 2024-10-14T05:41:59.435Z (7 months ago)
- Topics: debian, debian-packages, desktop, electron, facebook, linux, macos, message, messager, messaging, osx, statuses, texting, tray-icon, ubuntu, whatsapp, whatsapp-client, whatsapp-desktop, whatsapp-web, windows
- Language: JavaScript
- Homepage: http://oothkoo.com
- Size: 37.9 MB
- Stars: 135
- Watchers: 12
- Forks: 25
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# WhatsApp Desktop

Unofficial WhatsApp Desktop Client for OSX, Linux and Windows. Build with [Electron](http://electron.atom.io/).
This is **NOT** an official product. This project does not attempt to reverse engineer the WhatsApp API or attempt to reimplement any part of the WhatsApp client. Any communication between the user and WhatsApp servers is handled by official WhatsApp Web itself; this is just a native wrapper for WhatsApp Web, like a browser.
Original versions of WhatsApp Desktop was written by:
* @bcalik : https://github.com/bcalik/Whatsapp-Desktop
* @Enrico204 : https://github.com/Enrico204/Whatsapp-Desktop## Features
* Cross platform (OSX, Windows x64, Linux ia32/x64 and ARM v7l)
* Native notifications
* System tray icon
* Open links in browser
* Badge with the number of notifications in the dock/taskbar
* Dock icon bounces when a new message is received
* Focus on contact search input via CMD+F (WIN+F)
* Phone info window (s/w versions, battery status, etc)
* Auto-launch on login
* Start minimized to tray icon
* Logging system (log to console and *userData*/log.log)
* Apply custom CSS stylesheet
* Auto-hide menu bar (Windows, Linux)
* Disabling GPU rendering (useful when dealing with bugged video drivers)
* A couple of things can be configured:
* Toggle avatar visibility
* Toggle preview of the messages visibility
* Set the size for the media thumbs
* Proxy settings connect to WhatsApp web## Download WhatsApp
* Windows 10 - [Download](https://github.com/oOthkOo/whatsapp-desktop/releases/download/v0.5.2/WhatsApp-win32-x64.zip) - 
* Mac OSX - [Download](https://github.com/oOthkOo/whatsapp-desktop/releases/download/v0.5.2/WhatsApp-darwin-x64.zip) - 
* Ubuntu (32 bits) - [Download](https://github.com/oOthkOo/whatsapp-desktop/releases/download/v0.5.2/whatsapp-desktop-x32.deb) - 
* Ubuntu (64 bits) - [Download](https://github.com/oOthkOo/whatsapp-desktop/releases/download/v0.5.2/whatsapp-desktop-x64.deb) - Donations
-----:heart: Donations are always welcome :heart:.
Coins | Symbols | Addresses
--- | --- | ---| BTC | 3B52fbzNFQTaKZxWf5GrCUsASD2UP8na4A
| ETH | 0x1C389f1f85Cdb3C2996b83fAc87E496A80698B7C
| SOL | F14pWhGjGLcCF8RMk4JhbK2kD49iBBwa9KFygRJo54Fm
## Build WhatsApp Debian/Ubuntu packages
Follow these instructions to install `whatsapp-desktop` on your system.
### Install NPM and Yarn
You need NPM and Yarn to be installed on your system before building deb package.
* NPM : https://nodejs.org/en/download/package-manager/
* Yarn : https://yarnpkg.com/lang/en/docs/install/### Build Linux 32/64 bits packages
You can build `whatsapp-desktop-xxx.deb` package with:
```sh
git clone https://github.com/oOthkOo/whatsapp-desktop.git
cd whatsapp-desktop
./scripts/build-deb-x64.sh # or ./scripts/build-deb-x32.sh for 32 bits
```You'll find debian packages into `build/releases` directory.
### Install WhatsApp on Debian, Ubuntu, Mint, ...
```sh
sudo apt install ./build/releases/whatsapp-desktop-x64.deb
sudo apt install -f
```## Command line switches
--debug-log Switch file's log level to "debug" (default: "warn")
## Contributions
Contributions are welcome! For feature requests and bug reports please submit an [issue](https://github.com/oOthkOo/whatsapp-desktop/issues).
## Build from source
To build from the source, run the following commands:
```sh
yarn install
yarn run build:{platform}
```Platform | OS
--- | ---
win | Windows only
osx | OSX only
osxm1 | OSX arm64 (m1)
linux | Linux 64 bits
linux32 | Linux 32 bits
linuxarmv7l | ARM LinuxYou'll find artifacts into `build/dist/` directory.
## Run on-the-fly (for devs)
If you're a developer, you may want to use directly `yarn run dev` (in project root) instead of compiling the code each time. Please note that autostart feature will not work in this mode.
### Cross-build for Windows (from Linux/macOS)
Wine needs to be installed. On macOS, it is installable via Homebrew:
brew install wine
On GNU/Linux you can install `wine` from your distro package manager.
Please mind that `wine` requires an Xorg display, so you should set correctly your DISPLAY env var (you can use `Xvfb` if you don't have/want a real Xorg display running)