Command Completion Alerts—Stay Notified, Stay Productive!
Project description
TerminalAlert
=============
|contributors| |forks| |stars| |issues| |license|
Command Completion Alerts—Stay Notified, Stay Productive!
`Explore the repo <https://github.com/Jemeni11/TerminalAlert>`_
Table of Contents
=================
* `Introduction`_
* `Features`_
* `Installation`_
* `Usage`_
* `Examples`_
* `Roadmap`_
* `Why did I build this?`_
* `Contributing`_
* `Wait a minute, who are you?`_
* `License`_
* `Changelog`_
Introduction
============
TerminalAlert is a command-line application that keeps you informed about the
completion of your terminal commands.
Once a command completes, TerminalAlert sends a desktop notification indicating whether it succeeded or failed.
Perfect for multitaskers, this tool helps you stay productive without
having to monitor the terminal constantly.
Features
--------
* **Command Completion Alerts**: Receive desktop notifications when your terminal commands finish executing.
* **Detailed Command Summary**: After execution, the terminal displays:
* ``Output``: Standard output (if any).
* ``Error``: Standard error (if any).
* ``Execution time``: The time taken in seconds.
* **Success & Failure Indicators**: Notifications clearly indicate whether the command succeeded or encountered errors.
* **Cross-Platform Support**: Works on Windows, macOS, and Linux.
.. note::
Some applications may output error messages to ``stderr`` even when they execute successfully. For example:
``terminalalert "git clone https://github.com/Jemeni11/TerminalAlert.git TADupl"``
May produce the following:
Output: None
Error: Cloning into 'TADupl'...
Execution time: 4.45 seconds
This behavior depends on how the specific application writes to ``stdout`` and ``stderr``.
.. warning::
This tool is only partially complete on Windows. When it sends notifications, it may not display
the icon next to the title. If you mute TerminalAlert notifications on Windows, you will be unable
to enable them again. This is a known Windows bug with a fix in progress.
Installation
============
From PyPI (Using PIP)
---------------------
::
pip install TerminalAlert
Usage
=====
TerminalAlert is easy to use. Simply pass the command you want to
execute as an argument, and you'll receive a desktop notification upon its completion.
*TerminalAlert does not save any of your commands.*
::
usage: terminalalert [-h] [-u] command
Command Completion Alerts—Stay Notified, Stay Productive!
positional arguments:
command The command to run.
options:
-h, --help show this help message and exit
-u, --update Check if a new version is available.
Examples
========
Hello World
-----------
::
terminalalert "echo 'Hello World!'"
Clone a repo
------------
::
terminalalert "git clone https://github.com/Jemeni11/TerminalAlert.git"
Check for an update
-------------------
::
terminalalert -u
Roadmap
=======
* [✓] Initial MVP with desktop notifications
* [ ] Fix Windows specific issues
See the `open issues <https://github.com/Jemeni11/TerminalAlert/issues>`_ for a full list of proposed features (and known
issues).
Why did I build this?
=====================
I was cloning a big git repo while coding. I didn't want to monitor it 24/7, so I minimized the terminal and continued
coding. To my surprise, when I checked after 10 minutes, the process had failed. My network connection was unreliable
that day (let's not name the ISP). I retried multiple times, and it failed multiple times. This experience inspired me
to create a tool that could notify me when a terminal command completes.
Contributing
============
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any
contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also
simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
1. Fork the Project
2. Create your Feature Branch (``git checkout -b feature/AmazingFeature``)
3. Commit your Changes (``git commit -m 'Add some AmazingFeature'``)
4. Push to the Branch (``git push origin feature/AmazingFeature``)
5. Open a Pull Request
Wait a minute, who are you?
===========================
`TerminalAlert <https://github.com/Jemeni11/TerminalAlert>`_ was built by Emmanuel Jemeni, a Frontend Developer with a
passion for Python.
You can find me on various platforms:
* `LinkedIn <https://www.linkedin.com/in/emmanuel-jemeni/>`_
* `GitHub <https://github.com/Jemeni11>`_
* `Twitter <https://twitter.com/Jemeni11_>`_
If you'd like, you can support me on `GitHub Sponsors <https://github.com/sponsors/Jemeni11/>`_
or `Buy Me A Coffee <https://www.buymeacoffee.com/jemeni11>`_.
License
=======
`MIT License <https://github.com/Jemeni11/TerminalAlert/blob/main/LICENSE>`_.
Changelog
=========
`Changelog <https://github.com/Jemeni11/TerminalAlert/blob/main/CHANGELOG.md>`_
.. |contributors| image:: https://img.shields.io/github/contributors/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/graphs/contributors
.. |forks| image:: https://img.shields.io/github/forks/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/network/members
.. |stars| image:: https://img.shields.io/github/stars/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/stargazers
.. |issues| image:: https://img.shields.io/github/issues/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/issues
.. |license| image:: https://img.shields.io/github/license/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/blob/main/LICENSE
=============
|contributors| |forks| |stars| |issues| |license|
Command Completion Alerts—Stay Notified, Stay Productive!
`Explore the repo <https://github.com/Jemeni11/TerminalAlert>`_
Table of Contents
=================
* `Introduction`_
* `Features`_
* `Installation`_
* `Usage`_
* `Examples`_
* `Roadmap`_
* `Why did I build this?`_
* `Contributing`_
* `Wait a minute, who are you?`_
* `License`_
* `Changelog`_
Introduction
============
TerminalAlert is a command-line application that keeps you informed about the
completion of your terminal commands.
Once a command completes, TerminalAlert sends a desktop notification indicating whether it succeeded or failed.
Perfect for multitaskers, this tool helps you stay productive without
having to monitor the terminal constantly.
Features
--------
* **Command Completion Alerts**: Receive desktop notifications when your terminal commands finish executing.
* **Detailed Command Summary**: After execution, the terminal displays:
* ``Output``: Standard output (if any).
* ``Error``: Standard error (if any).
* ``Execution time``: The time taken in seconds.
* **Success & Failure Indicators**: Notifications clearly indicate whether the command succeeded or encountered errors.
* **Cross-Platform Support**: Works on Windows, macOS, and Linux.
.. note::
Some applications may output error messages to ``stderr`` even when they execute successfully. For example:
``terminalalert "git clone https://github.com/Jemeni11/TerminalAlert.git TADupl"``
May produce the following:
Output: None
Error: Cloning into 'TADupl'...
Execution time: 4.45 seconds
This behavior depends on how the specific application writes to ``stdout`` and ``stderr``.
.. warning::
This tool is only partially complete on Windows. When it sends notifications, it may not display
the icon next to the title. If you mute TerminalAlert notifications on Windows, you will be unable
to enable them again. This is a known Windows bug with a fix in progress.
Installation
============
From PyPI (Using PIP)
---------------------
::
pip install TerminalAlert
Usage
=====
TerminalAlert is easy to use. Simply pass the command you want to
execute as an argument, and you'll receive a desktop notification upon its completion.
*TerminalAlert does not save any of your commands.*
::
usage: terminalalert [-h] [-u] command
Command Completion Alerts—Stay Notified, Stay Productive!
positional arguments:
command The command to run.
options:
-h, --help show this help message and exit
-u, --update Check if a new version is available.
Examples
========
Hello World
-----------
::
terminalalert "echo 'Hello World!'"
Clone a repo
------------
::
terminalalert "git clone https://github.com/Jemeni11/TerminalAlert.git"
Check for an update
-------------------
::
terminalalert -u
Roadmap
=======
* [✓] Initial MVP with desktop notifications
* [ ] Fix Windows specific issues
See the `open issues <https://github.com/Jemeni11/TerminalAlert/issues>`_ for a full list of proposed features (and known
issues).
Why did I build this?
=====================
I was cloning a big git repo while coding. I didn't want to monitor it 24/7, so I minimized the terminal and continued
coding. To my surprise, when I checked after 10 minutes, the process had failed. My network connection was unreliable
that day (let's not name the ISP). I retried multiple times, and it failed multiple times. This experience inspired me
to create a tool that could notify me when a terminal command completes.
Contributing
============
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any
contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also
simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
1. Fork the Project
2. Create your Feature Branch (``git checkout -b feature/AmazingFeature``)
3. Commit your Changes (``git commit -m 'Add some AmazingFeature'``)
4. Push to the Branch (``git push origin feature/AmazingFeature``)
5. Open a Pull Request
Wait a minute, who are you?
===========================
`TerminalAlert <https://github.com/Jemeni11/TerminalAlert>`_ was built by Emmanuel Jemeni, a Frontend Developer with a
passion for Python.
You can find me on various platforms:
* `LinkedIn <https://www.linkedin.com/in/emmanuel-jemeni/>`_
* `GitHub <https://github.com/Jemeni11>`_
* `Twitter <https://twitter.com/Jemeni11_>`_
If you'd like, you can support me on `GitHub Sponsors <https://github.com/sponsors/Jemeni11/>`_
or `Buy Me A Coffee <https://www.buymeacoffee.com/jemeni11>`_.
License
=======
`MIT License <https://github.com/Jemeni11/TerminalAlert/blob/main/LICENSE>`_.
Changelog
=========
`Changelog <https://github.com/Jemeni11/TerminalAlert/blob/main/CHANGELOG.md>`_
.. |contributors| image:: https://img.shields.io/github/contributors/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/graphs/contributors
.. |forks| image:: https://img.shields.io/github/forks/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/network/members
.. |stars| image:: https://img.shields.io/github/stars/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/stargazers
.. |issues| image:: https://img.shields.io/github/issues/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/issues
.. |license| image:: https://img.shields.io/github/license/Jemeni11/TerminalAlert.svg?style=for-the-badge
:target: https://github.com/Jemeni11/TerminalAlert/blob/main/LICENSE
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
terminalalert-1.2.1.tar.gz
(391.9 kB
view details)
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
TerminalAlert-1.2.1-py3-none-any.whl
(387.4 kB
view details)
File details
Details for the file terminalalert-1.2.1.tar.gz.
File metadata
- Download URL: terminalalert-1.2.1.tar.gz
- Upload date:
- Size: 391.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf2870c99942e2e447d7922a595825a8be7166c012f8c3db47a3b051a429b35f
|
|
| MD5 |
418627c245f9c9d9ee3401b8d5a56ba8
|
|
| BLAKE2b-256 |
336c509db1fbbf4c3ab244cc9ec91c00483171a703653cee720efd8ed9d1dd2f
|
File details
Details for the file TerminalAlert-1.2.1-py3-none-any.whl.
File metadata
- Download URL: TerminalAlert-1.2.1-py3-none-any.whl
- Upload date:
- Size: 387.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
624a20027bd5ef77f8f783b44d03c26f95c25caea235aa7fe51e4c8c09e7c9ea
|
|
| MD5 |
ca7ed0335c91601196c55bdb7b24e946
|
|
| BLAKE2b-256 |
3fa203ab6dfab3d8411bfd5cc60b7f957540adbacd10c3c61915b6b7a9754a8c
|