Metadata-Version: 2.1
Name: just-start
Version: 0.5.0
Summary: Just Start is a wrapper for Task Warrior with pomodoro support
Home-page: https://github.com/AliGhahraei/just-start/
License: GPL-3.0+
Author: Ali Ghahraei
Author-email: aligf94@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: term
Provides-Extra: urwid
Requires-Dist: pexpect (>=4.6,<5.0)
Requires-Dist: pydantic (>=0.31,<0.32)
Requires-Dist: toml (>=0.10.0,<0.11.0)
Requires-Dist: urwid (>=2.0,<3.0); extra == "urwid"
Project-URL: Repository, https://github.com/AliGhahraei/just-start/
Description-Content-Type: text/x-rst

just-start
==========

|Build Status| |Coverage Status|

An app to defeat procrastination!

Introduction
------------

Just-Start is a to-do list application and productivity booster. It prevents
you from procrastinating (too much).

The program is a wrapper for TaskWarrior_ with a timer implementing the
`Pomodoro Technique`_ (time management). It also draws a bit of inspiration from
Omodoro_.

Features:

- Configurable pomodoro phase durations
- Support for multiple configurations (a.k.a. *locations*) based on the current time and day of the week
- Desktop notifications
- Block time-wasting sites while you’re working

Installation
------------

Supported platforms:

- Linux
- macOS

Requirements:

- Python 3.7
- TaskWarrior_ (latest)

Pick a client from the table below and run:

.. code:: bash

    $ pip install just-start[<client_name>]

If you pick urwid, you should run:

.. code:: bash

    $ pip install just-start[urwid]

Clients
-------

+--------------------+----------+------------------------------------------------------------+
|Name                |Framework |Notes                                                       |
+====================+==========+============================================================+
|urwid (recommended) |Urwid_    |Inspired by Calcurse_. Similar to a graphical               |
|                    |          |application, but in your terminal                           |
+--------------------+----------+------------------------------------------------------------+
|term                |Terminal  |Example client. Useful for seeing how to write a brand new  |
|                    |(none)    |one but not intended for continuous usage                   |
+--------------------+----------+------------------------------------------------------------+

Usage
-----

.. code:: bash

    $ just-start-<client_name>

So for the urwid client:

.. code:: bash

    $ just-start-urwid

Press h to see a list of available user actions.

Development
-----------

If you want to help out please install Poetry_, clone the repo and run:

.. code:: bash

    $ cd just-start/
    $ poetry install

This will ensure you have both the development and install dependencies.

Issues are tracked using `GitHub Issues`_

Running Tests
-------------

First, you’ll need the Development_ dependencies. Then, just issue the
following:

.. code:: bash

    $ coverage run --source=just_start,just_start_urwid -m pytest; coverage report

.. |Build Status| image:: https://travis-ci.org/AliGhahraei/
   just-start.svg?branch=master
   :target: https://travis-ci.org/AliGhahraei/just-start
.. |Coverage Status| image:: https://codecov.io/gh/AliGhahraei/just-start/branch
   /master/graph/badge.svg
   :target: https://codecov.io/gh/AliGhahraei/just-start

.. _Calcurse: http://calcurse.org
.. _GitHub Issues: https://github.com/AliGhahraei/just-start/issues
.. _Omodoro: https://github.com/okraits/omodoro
.. _Poetry: https://poetry.eustace.io/docs/
.. _Pomodoro Technique: https://cirillocompany.de/pages/pomodoro-technique
.. _release: https://github.com/AliGhahraei/just-start/releases
.. _Taskwarrior: https://taskwarrior.org/
.. _Urwid: http://urwid.org/

