Keep Slack/Teams active by simulating key presses at regular intervals
Project description
lazy-b
Keep Slack, Microsoft Teams, or other similar applications from showing you as "away" or "inactive" by simulating key presses at regular intervals.
Installation
Install directly from PyPI using pip or uv:
# Using pip
pip install lazy-b
# Using uv
uv pip install lazy-b
Usage
Command Line
Run lazy-b from the command line:
# Basic usage (will press Shift key every 1 second)
lazy-b
# Customize the interval (e.g., every 30 seconds)
lazy-b --interval 30
Platform-specific behavior
- macOS: By default, runs in background mode with no dock icon. You can close the terminal window after starting it, and it will continue to run.
- Windows/Linux: The application runs in the terminal window. You need to keep the window open for the program to continue running.
To stop lazy-b, you can:
- Press Ctrl+C in the terminal window
- On macOS, if running in background, find and kill the process:
# Find the process
ps aux | grep lazy-b
# Kill it using the PID
kill <PID>
Python API
You can also use the Python API directly in your own scripts (works on all platforms):
from lazy_b import LazyB
import time
# Create an instance with a custom interval (in seconds)
lazy = LazyB(interval=5) # Press Shift every 5 seconds
# Define a callback function to handle status messages (optional)
def status_callback(message):
print(f"Status: {message}")
# Start the simulation
lazy.start(callback=status_callback)
try:
# Keep your script running
while True:
time.sleep(1)
except KeyboardInterrupt:
# Stop on Ctrl+C
lazy.stop()
Features
- Prevents "away" or "inactive" status in messaging applications
- Customizable interval between key presses (default: 1 second)
- Simple command-line interface
- Cross-platform: Works on macOS, Windows, and Linux
- Background mode on macOS (no dock icon)
- Python API for integration into your own scripts
- Minimal resource usage
Development
Setup Development Environment
# Clone the repository
git clone https://github.com/Lanznx/lazy-b.git
cd lazy-b
# Setup development environment
make dev-setup
# Install in development mode
make install
Releasing New Versions
To release a new version:
# Update version, create commit and tag
make release # This will prompt for the new version
# Push changes and tag to GitHub
git push origin main
git push origin v<version> # e.g., git push origin v0.2.0
Pushing a tag will automatically trigger the release workflow, which will:
- Build the package
- Create a GitHub release
- Publish to PyPI
Requirements
- Python 3.8 or higher
- PyAutoGUI
- PyObjC-Core (for macOS dock icon hiding, optional)
License
MIT
Disclaimer
This tool is meant for legitimate use cases like preventing timeouts during presentations or when you're actively reading but not typing. Please use responsibly and in accordance with your organization's policies.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lazy_b-0.1.8.tar.gz.
File metadata
- Download URL: lazy_b-0.1.8.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ca0b0211393c927544d116f7e80444a892cbc779b1900ed7cc8bbe17acd9cd1
|
|
| MD5 |
13a1ae2fa05ca709cc88e4185bfb9d4f
|
|
| BLAKE2b-256 |
0f651fe36d8b49f0a14ebe09ec1abf857033d5d59100c0187072c8a326073085
|
File details
Details for the file lazy_b-0.1.8-py3-none-any.whl.
File metadata
- Download URL: lazy_b-0.1.8-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64191d7f75cdbf0796e20fba14bb69e77511c839b085fe737b091c841436ffc5
|
|
| MD5 |
4dc75b6de0a0fa3d111fc54f375577af
|
|
| BLAKE2b-256 |
7f73933daa172981fff19477f64832bbf4e24d4fc051bc16d2165e28bf8c8fc2
|