An open API service indexing awesome lists of open source software.

https://github.com/sukitsubaki/screen-time-tracker

A minimalist Python tracker that records the usage time of various applications and provides insights into your computer usage habits.
https://github.com/sukitsubaki/screen-time-tracker

application-usage data-analysis monitoring productivity python python-cli screen-time time-tracking

Last synced: 25 days ago
JSON representation

A minimalist Python tracker that records the usage time of various applications and provides insights into your computer usage habits.

Awesome Lists containing this project

README

        

# Screen Time Tracker

A minimalist Python tracker to record the time spent using different applications on your computer.

## Features

- Monitors active applications and records usage time
- Creates daily, weekly, and monthly reports
- Simple command-line interface for easy operation
- Lightweight with minimal dependencies

## Installation

```bash
# Clone repository
git clone https://github.com/sukitsubaki/screen-time-tracker.git
cd screen-time-tracker

# Install core dependencies
pip install -r requirements.txt

# Install OS-specific dependencies
# For macOS:
pip install pyobjc
# For Windows:
pip install pywin32
# For Linux:
pip install python-xlib
```

## Usage

```bash
# Start tracking
python run-tracker.py start

# Generate report
python run-tracker.py report --period daily

# Alternatively, make the script executable first
chmod +x run-tracker.py

# Then run directly
./run-tracker.py start
```

For advanced usage options, check out the [documentation](docs/DOCUMENTATION.md).

## Requirements

- Python 3.8+
- Operating Systems: Windows, macOS, Linux

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.