All Projects → kelyvin → Google Allo For Desktop

kelyvin / Google Allo For Desktop

A "native-like" OS X, Windows, & Linux desktop app for Google Allo

Projects that are alternatives of or similar to Google Allo For Desktop

Google Messages For Desktop
A "native-like" OS X, Windows, & Linux desktop app for Google Messages
Stars: ✭ 140 (+25%)
Mutual labels:  google, desktop, desktop-app
webviewhs
🌐 A Haskell binding to the webview library created by Serge Zaitsev.
Stars: ✭ 109 (-2.68%)
Mutual labels:  desktop-app, desktop
MagicBox
Organize your workspace, keep files optimized, prepare images for publishing
Stars: ✭ 65 (-41.96%)
Mutual labels:  desktop-app, desktop
Bunqdesktop
The unofficial, free and open source desktop application for the bunq API
Stars: ✭ 271 (+141.96%)
Mutual labels:  desktop, desktop-app
Luna
Automatic dark mode for Windows 10
Stars: ✭ 220 (+96.43%)
Mutual labels:  desktop, desktop-app
Quick Picture Viewer
🖼️ Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.
Stars: ✭ 237 (+111.61%)
Mutual labels:  desktop, desktop-app
Picview
Fast Picture Viewer with compact UI, that can be hidden. Features image effects, galleries, image info and more. The app can automatically adjusts itself to your screen.
Stars: ✭ 259 (+131.25%)
Mutual labels:  desktop, desktop-app
FoldingBrowser
FoldingCoin & CureCoin All-In-One Installer
Stars: ✭ 48 (-57.14%)
Mutual labels:  desktop-app, desktop
Thermal
One stop to manage all git repository
Stars: ✭ 321 (+186.61%)
Mutual labels:  desktop, desktop-app
Guark
Build awesome Golang desktop apps and beautiful interfaces with Vue.js, React.js, Framework 7, and more...
Stars: ✭ 334 (+198.21%)
Mutual labels:  desktop, desktop-app
Swifty
🔑 Free Offline Password Manager
Stars: ✭ 496 (+342.86%)
Mutual labels:  desktop, desktop-app
Frameless Titlebar
Customizable Electron Titlebar for frameless windows
Stars: ✭ 167 (+49.11%)
Mutual labels:  desktop, desktop-app
Preact Photon
🚀 Beautiful desktop apps with Preact + Photon ❤️
Stars: ✭ 158 (+41.07%)
Mutual labels:  desktop, desktop-app
Quick Screen Recorder
Lightweight desktop screen recorder for Windows.
Stars: ✭ 80 (-28.57%)
Mutual labels:  desktop, desktop-app
Chirp
🐦 A cross platform twitter application
Stars: ✭ 129 (+15.18%)
Mutual labels:  desktop, desktop-app
Pomodorologger
Pomodoro Logger 🕤 -- When a time tracker meets Pomodoro and Kanban board
Stars: ✭ 316 (+182.14%)
Mutual labels:  desktop, desktop-app
Green Recorder
A simple screen recorder for Linux desktop. Supports Wayland & Xorg
Stars: ✭ 594 (+430.36%)
Mutual labels:  desktop, desktop-app
Poddycast
Podcast app made with Electron, lots of ❤️ and ☕️
Stars: ✭ 111 (-0.89%)
Mutual labels:  desktop, desktop-app
Jtop
SVG virtual desktop library that lets you build beautiful desktop like user interfaces.
Stars: ✭ 108 (-3.57%)
Mutual labels:  desktop
Android Ratingreviews
Simple star rating system bars, a view similar to the ones seen on Google Playstore. ⭐🌟✨
Stars: ✭ 110 (-1.79%)
Mutual labels:  google

DEPRECATED

With Google's latest announcement that allo is shutting down in March, this project will also be ending and moving to "archive" mode. I would like to thank everyone for the downloads and support and for helping to validate a user need. You can check out the Android Messages for Desktop project instead.

Google Allo for Desktop

Allo Home Page

A desktop app for Google Allo. This desktop app is supported by both Nativefier and Electron version ^1.7.6.

The Mac, Windows, and Linux apps can be downloaded from the latest release. The latest release includes both a light and dark theme version of the app.

Purpose

The purpose of this project is to build dedicated desktop apps for Google Allo and leverage your OS's built in notification system.

This desktop app and project is not an official product of Google and I am not affiliated with Google in any way. You can read more about the purpose of this project here: https://www.caffeinecoding.com/validating-a-customer-need-with-rapid-experimentation/

Rebuilding the app

Requires nodejs

Nativefier

Install nativefier and make sure to have your optional dependencies set up to replace the icon.

npm install -g nativefier

Mac

nativefier --platform "mac" --icon allo-logo.png --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance --tray

Windows

nativefier --platform "windows" --icon allo-logo.ico --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance --tray

Linux

nativefier --platform "linux" --icon allo-logo.png --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance

Notifications on Windows

To receive notifications on Windows, you'll need to do the following:

  1. Add a shortcut of this app to the Start Menu folder
  2. In the "Windows Settings" app, check if the setting for "Show notifications in action center" is on (It might be off by default)

For developers

These instructions were the result of an active issue with electron + Windows 8/10 and is resolved by setting app.setAppUserModelId(process.execPath) within resources/app/lib/main.js during electron initialization:

Example:

const {app, shell} = electron;

app.setAppUserModelId(process.execPath);  // Include this line

function getFilenameFromMime(name, mime) {
  const exts = extName.mime(mime);
  ...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].