All Projects → mooltipass → Moolticute

mooltipass / Moolticute

Licence: gpl-3.0
Mooltipass crossplatform daemon/tools

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Moolticute

Nitrokey App
Nitrokey's Application (Win, Linux, Mac)
Stars: ✭ 210 (+156.1%)
Mutual labels:  libusb, password-manager
Upm Android
Android version of Universal Password Manager.
Stars: ✭ 76 (-7.32%)
Mutual labels:  password-manager
Libcorsairrgb
⌨️ Windows library for controlling lights on Corsair RGB keyboards
Stars: ✭ 52 (-36.59%)
Mutual labels:  libusb
Peerflix Server
Streaming torrent client for Node.js with web ui.
Stars: ✭ 1,157 (+1310.98%)
Mutual labels:  daemon
Bulwark Explorer
Block explorer for Bulwark Cryptocurrency
Stars: ✭ 57 (-30.49%)
Mutual labels:  daemon
Qt Sesam
c't SESAM Password Manager (Qt version)
Stars: ✭ 72 (-12.2%)
Mutual labels:  password-manager
Passage
A password manager using https://age-encryption.org/
Stars: ✭ 48 (-41.46%)
Mutual labels:  password-manager
Lector
Qt based ebook reader
Stars: ✭ 1,218 (+1385.37%)
Mutual labels:  crossplatform
Git Repo Watcher
A simple bash script to watch a git repository and pull upstream changes if needed.
Stars: ✭ 73 (-10.98%)
Mutual labels:  daemon
Masterpassword
Project moved to https://gitlab.com/spectre.app
Stars: ✭ 1,122 (+1268.29%)
Mutual labels:  password-manager
Ppma
[INACTIVE] PHP Password Manager
Stars: ✭ 62 (-24.39%)
Mutual labels:  password-manager
Allyourpasswords
The offline macOS password manager
Stars: ✭ 59 (-28.05%)
Mutual labels:  password-manager
Pebble
Unofficial Pebble watch support for SailfishOS/Jolla
Stars: ✭ 71 (-13.41%)
Mutual labels:  daemon
Xsuspender
👀 💻 💤 🔋 Save battery by auto-suspending unfocused X11 applications.
Stars: ✭ 53 (-35.37%)
Mutual labels:  daemon
Pfp
Manage your passwords easily and securely, via browser extension for Firefox, Chrome, Opera
Stars: ✭ 77 (-6.1%)
Mutual labels:  password-manager
Jiacrontab
简单可信赖的任务管理工具
Stars: ✭ 1,052 (+1182.93%)
Mutual labels:  daemon
Pass For Macos
macOS wrapper for pass, the standard UNIX password manager
Stars: ✭ 62 (-24.39%)
Mutual labels:  password-manager
Oragono
A modern IRC server (daemon/ircd) written in Go.
Stars: ✭ 1,171 (+1328.05%)
Mutual labels:  daemon
Passwd
A beautiful, cross-platform, encrypted password manager 🔐
Stars: ✭ 82 (+0%)
Mutual labels:  password-manager
Yubikeylockd
Simple daemon for locking and unlocking macOS with Yubikey
Stars: ✭ 78 (-4.88%)
Mutual labels:  daemon

Moolticute

License

Build Status

This project aims to be an easy to use companion to your Mooltipass device and extend the power of the device to more platform/tools. With it you can manage your Mooltipass with a cross-platform app, as well as provide a daemon service that handles all USB communication with the device.

This tool comes with a daemon that runs in background, and a user interface app to control your Mooltipass. Other clients can also connect and talk to the daemon (it uses a websocket connection and simple JSON messages).

It is completely cross platform, and runs on Linux (using native hidraw API), OS X (native IOKit API), and Windows (native HID API).

Downloads

Packages are build and available here: https://github.com/mooltipass/moolticute/releases

Dependencies

Windows, Linux, OSX
  • Requires Qt 5.6 or higher.
  • These Qt5 modules are required:
    • qt-core
    • qt-gui
    • qt-widgets
    • qt-network
    • qt-websockets
Linux
  • Requires the qt-dbus module
  • Requires to install udev rule for it
Ubuntu 16.04
sudo apt install libqt5websockets5-dev qt-sdk qt5-qmake qt5-default libudev-dev
curl https://raw.githubusercontent.com/mooltipass/mooltipass-udev/master/udev/69-mooltipass.rules | sudo tee /etc/udev/rules.d/69-mooltipass.rules
sudo udevadm control --reload-rules
Arch Linux
sudo pacman -S --needed qt5-websockets qt5-base
curl https://raw.githubusercontent.com/mooltipass/mooltipass-udev/master/udev/69-mooltipass.rules | sudo tee /etc/udev/rules.d/69-mooltipass.rules
sudo udevadm control --reload-rules
Fedora Linux
sudo dnf install gcc-c++ qt5 qt5-qtwebsockets qt5-qtwebsockets-devel qt5-qttools-devel systemd-devel
curl https://raw.githubusercontent.com/mooltipass/mooltipass-udev/master/udev/69-mooltipass.rules | sudo tee /etc/udev/rules.d/69-mooltipass.rules
sudo udevadm control --reload-rules

How to build

For now, no binary releases are out yet. You will need to build the software by following the next step.

Two method can be used to build, by using QtCreator IDE, or from command line (typically on Linux). After the build succeeded, two executable are created:

  • moolticuted (the daemon process)
  • moolticute (the main GUI app)
Using Qt SDK
  • Download and install the Qt SDK from their website
  • Start Qt-Creator
  • Open the main Moolticute.pro project file
    • Note for Windows users: make sure that you select a "kit" that uses the MinGW compiler. Moolticute currently won't compile successfully when using the Microsoft Visual C++ compiler.
  • Click on the "play" button to build and run
Command line

Qt needs to be installed correctly (see your Linux distribution for that)

mkdir build
cd build
qmake ../Moolticute.pro
make

Be sure to use the Qt5 qmake. You can check if you are using the correct qmake by using the command

➜  ~  qmake --version
QMake version 3.0
Using Qt version 5.5.1 in /usr/lib

On Gentoo, a wrapper is created for qmake, so this command should be used:

qmake -qt=5 ../Moolticute.pro

On Fedora, use this qmake command:

qmake-qt5 ../Moolticute.pro

Licensing

Moolticute is free software: you can redistribute it and/or modify it under the terms of the GNU Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

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].