This script generates or update a todo.svg file from a text file (todo.txt) and sets it as a wallpaper. Ensure the todo.svg(wallpaper_behind_the_todo-list) file is stored in the same directory as the script.
- Place your to-do list in
todo.txt. - Run the script:
python3 todo.py
- The script will generate
todo.svgin the same directory. Set this SVG as your wallpaper.
- Create a batch file (
run_todo.bat) with the following content:python "C:\path\to\todo.py" - Place the batch file in the Windows Startup folder:
%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup
- Create a
.desktopfile in~/.config/autostart/:nano ~/.config/autostart/todo.desktop - Add the following content:
[Desktop Entry] Type=Application Exec=python /path/to/todo.py Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name=To-Do SVG Generator
- Save and exit.
- Ensure Python is installed and accessible in your system's PATH.
- Set the generated
todo.svgas your wallpaper using your system's wallpaper settings.