https://github.com/DabzillaNation/Simple-Initface-Vibes
Connects to Initface and activates vibe at 100% on key/mouse press
https://github.com/DabzillaNation/Simple-Initface-Vibes
Last synced: 11 months ago
JSON representation
Connects to Initface and activates vibe at 100% on key/mouse press
- Host: GitHub
- URL: https://github.com/DabzillaNation/Simple-Initface-Vibes
- Owner: DabzillaNation
- Created: 2025-02-17T02:57:24.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T04:14:20.000Z (12 months ago)
- Last Synced: 2025-02-17T04:23:32.999Z (12 months ago)
- Language: Python
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-buttplug - Simple Intiface Vibes
README
# Simple-Initface-Vibes
Super simple standalone app.
- Connects to Initface and activates vibe on key/mouse press of your choice.
- Works while minimized.
- Can change intensity level.
# Install Setup (Executable)
Download the executable from the releases tab on this page and just run it.
It will show you instructions:





# 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
```bash
pip install -r requirements.txt
```
## Run Script:
Navigate the terminal to where you have the python script, then run:
```bash
python AppV5.py
```
## To build (For windows):
This is for generating an exe file.
``` bash
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.