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
# For macOS users (to enable dock icon hiding)
pip install "lazy-b[macos]"
# or with uv
uv pip install "lazy-b[macos]"
Usage
Command Line
Run lazy-b from the command line:
# Basic usage (will press Shift key every 60 seconds)
# Runs in background mode by default (no dock icon)
lazy-b
# Customize the interval (e.g., every 30 seconds)
lazy-b --interval 30
# Run in quiet mode (no console output)
lazy-b --quiet
# Run in foreground mode (shows dock icon)
lazy-b --foreground
By default, lazy-b runs in background mode with no dock icon (on macOS). You can close the terminal window after starting it, and it will continue to run.
To stop lazy-b, you can press Ctrl+C in the terminal window if it's still open, or 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:
from lazy_b import LazyB
import time
# Create an instance with a custom interval (in seconds)
lazy = LazyB(interval=45)
# 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
- Simple command-line interface
- Runs in background with no dock icon by default
- Python API for integration into your own scripts
- Minimal resource usage
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.1.tar.gz.
File metadata
- Download URL: lazy_b-0.1.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82dd9b6f7df445754c68332a5a614c9da4de8b39e57e024f3f29da282e153970
|
|
| MD5 |
e49a9416658e5507d98408f8bcab9409
|
|
| BLAKE2b-256 |
b30caaedf28eecee186397ae507e4912972892ff40f567f01d69eb6ba89ffe08
|
File details
Details for the file lazy_b-0.1.1-py3-none-any.whl.
File metadata
- Download URL: lazy_b-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cd5da78c77e38df75946343acb229a444c8cafe6b0740847c4fc6c6d289a4f1
|
|
| MD5 |
9c0766cab53a7b75a8f2633cfc4d2810
|
|
| BLAKE2b-256 |
2c602a9f1a72ce696703c19b42795d581c997f274c34183f9da60bcd28058cea
|