├── .flake8 ├── .gitignore ├── .python-version ├── LICENSE ├── Notesh.desktop ├── README.md ├── documentation ├── .gitkeep ├── ChangeBackgroundColor.gif ├── CreateNote.gif ├── DynamicResize.gif ├── HoptexNotesh.gif ├── HoverOver.gif ├── Layers.gif ├── NewDrawable.png ├── NoteshApp.png └── Resizing.gif ├── notesh ├── __init__.py ├── command_line.py ├── default_bindings.toml ├── drawables │ ├── __init__.py │ ├── box.py │ ├── drawable.py │ └── sticknote.py ├── main.css ├── main.py ├── play_area.py ├── utils.py └── widgets │ ├── __init__.py │ ├── color_picker.py │ ├── focusable_footer.py │ ├── multiline_input.py │ ├── sidebar.py │ └── sidebar_left.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.2 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/LICENSE -------------------------------------------------------------------------------- /Notesh.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/Notesh.desktop -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/README.md -------------------------------------------------------------------------------- /documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/ChangeBackgroundColor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/ChangeBackgroundColor.gif -------------------------------------------------------------------------------- /documentation/CreateNote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/CreateNote.gif -------------------------------------------------------------------------------- /documentation/DynamicResize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/DynamicResize.gif -------------------------------------------------------------------------------- /documentation/HoptexNotesh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/HoptexNotesh.gif -------------------------------------------------------------------------------- /documentation/HoverOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/HoverOver.gif -------------------------------------------------------------------------------- /documentation/Layers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/Layers.gif -------------------------------------------------------------------------------- /documentation/NewDrawable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/NewDrawable.png -------------------------------------------------------------------------------- /documentation/NoteshApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/NoteshApp.png -------------------------------------------------------------------------------- /documentation/Resizing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/documentation/Resizing.gif -------------------------------------------------------------------------------- /notesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notesh/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/command_line.py -------------------------------------------------------------------------------- /notesh/default_bindings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/default_bindings.toml -------------------------------------------------------------------------------- /notesh/drawables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notesh/drawables/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/drawables/box.py -------------------------------------------------------------------------------- /notesh/drawables/drawable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/drawables/drawable.py -------------------------------------------------------------------------------- /notesh/drawables/sticknote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/drawables/sticknote.py -------------------------------------------------------------------------------- /notesh/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/main.css -------------------------------------------------------------------------------- /notesh/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/main.py -------------------------------------------------------------------------------- /notesh/play_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/play_area.py -------------------------------------------------------------------------------- /notesh/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/utils.py -------------------------------------------------------------------------------- /notesh/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notesh/widgets/color_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/widgets/color_picker.py -------------------------------------------------------------------------------- /notesh/widgets/focusable_footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/widgets/focusable_footer.py -------------------------------------------------------------------------------- /notesh/widgets/multiline_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/widgets/multiline_input.py -------------------------------------------------------------------------------- /notesh/widgets/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/widgets/sidebar.py -------------------------------------------------------------------------------- /notesh/widgets/sidebar_left.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/notesh/widgets/sidebar_left.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvaniak/NoteSH/HEAD/setup.py --------------------------------------------------------------------------------