-
-
Save shdwkl/97eb0d5793f9d8ba0206e6f32c42372f to your computer and use it in GitHub Desktop.
TODO app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python | |
| # | |
| # Instantly Motivating Todo App | |
| # | |
| # Tired of complex todo apps? This minimalistic solution is your answer. | |
| # I've explored countless todo tools, apps, scripts, and even the ones | |
| # that are still in development. Yet, they all ended up untouched, defeating | |
| # their purpose. | |
| # | |
| # Introducing `doitnow`, a revolutionary approach. It does just one thing: | |
| # creates a file on your Desktop with the task's filename. Keep your Desktop | |
| # clean by limiting tasks. Delete a task's file when done. It's that simple. | |
| # | |
| # After all the hype and millions spent, a simple `touch` triumphs. | |
| python -c "import os; [os.system(f'notify-send \"{task}\"') for task in open('todo.txt').readlines()]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment