Skip to content

Instantly share code, notes, and snippets.

@shdwkl
Last active September 1, 2023 02:56
Show Gist options
  • Select an option

  • Save shdwkl/97eb0d5793f9d8ba0206e6f32c42372f to your computer and use it in GitHub Desktop.

Select an option

Save shdwkl/97eb0d5793f9d8ba0206e6f32c42372f to your computer and use it in GitHub Desktop.
TODO app
#!/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