Metadata-Version: 2.1
Name: tmpl2
Version: 0.0.2
Summary: Minimalist music player for audio files with a pleasant UI.
Author: Piotr Skowroński
License: MIT
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urwid (>=2.1.2)
Requires-Dist: python-vlc (>=3.0.18121)
Provides-Extra: formatting
Requires-Dist: black ; extra == 'formatting'
Provides-Extra: linting
Requires-Dist: flake8 ; extra == 'linting'
Requires-Dist: mypy ; extra == 'linting'

# tmpl

Minimalist music player for audio files with a pleasant UI.

## Installation

### PyPI

```
pip install tmpl2
```

### Manual

1. Clone the repository

```
git clone https://github.com/H4wk507/tmpl.git
```

2. Go into the directory and install

```
cd tmpl && pip install .
```

## Usage

Pass in directories/audio files as commandline arguments.

Example:

```
tmpl2 ~/Music/Rap/ sample.mp3 ...
```

## Keybindings

- arrow keys: Navigate
- enter: Play selected song
- space: Play/Pause
- n: Play next song
- u: Increase volume by 5%
- d: Decrease volume by 5%
- q: Quit

## License

Licensed under the [MIT License](LICENSE).
