Simple-Initface-Vibes
January 26, 2026 ยท View on GitHub
Super simple standalone app.
- Connects to Initface and activates vibe on key/mouse press of your choice.
- Works while minimized.
- Can change intensity level.
- Can select from devices, or vibrate all devices.
- Can change vibration pattern and create vibration patterns.
Install Setup (Executable)
Download the executable from the releases tab on this page and just run it.
There is a guide in the tool bar if you need it.
Setup For Python Script
If you don't trust a random exe file, you can install python, clone this repo, install the dependencies to look through the code and run it yourself
Install Dependencies (for python script):
Only needed if you want to edit and work with the script on your own
pip install -r requirements.txt
Run Script:
Navigate the terminal to where you have the python script, then run:
python AppV5.py
To build (For windows):
This is for generating an exe file.
python -m venv .venv # Creates a folder named ".venv" #Creates virtual env
.venv\Scripts\activate # Activates virtual env
pip install -r requirements.txt # installs requirements
pip install pyinstaller # Installs builder
pyinstaller --onefile --noconsole --name "IntifaceHapticApp" AppV5.py --icon="./icon.ico" # Builds app
# The app will be in the dist folder, the build folder is just temp files you can delete
Notes:
The AppV1 and V2 are just older worse versions of the app incase you wanted to see them for some reason.