Metadata-Version: 2.1
Name: pystickynote
Version: 1.5
Summary: Easy Sticky Note Widgets
Home-page: https://github.com/M4cs/pystickynote
Author: Max Bridgland
Author-email: mabridgland@protonmail.com
License: GNU General Public License v3 (GPLv3) (GPL)
Project-URL: Discord Server, https://discordapp.com/invite/7VN9VZe
Description: # pystickynote
        
        Stickynotes for your desktop easily from the command line! Built using [PySimpleGUI](http://pysimplegui.com)
        
        # Preview
        
        <p align="center">
          <a><img src="https://github.com/M4cs/pystickynote/blob/master/preview.png?raw=true"></a>
        </p>
        
        # How does it work?
        
        Pystickynote creates a small QT window for you to jot your ideas down and then display them later on all with a command line tool. On top of that, the note itself is fully customizable allowing you to change colors, alpha, and borders.
        
        # Installation
        
        ```
        pip3 install pystickynote
        ```
        
        # Running It
        
        ```
        pystickynote create <name_of_note> # Displays stickynote window
        
        pystickynote open <name_of_note> # Displays old stickynote
        
        pystickynote list # Displays all notes
        ```
        
        # Configuration
        
        Config files and notes can be found in `~/.config/pystickynote/`. Inside this folder you will find `pysn.conf` and `notes.json`.
        
        You can also find the default config and notes file in this repository.
        
        The config file looks something like this:
        
        ```
        [DEFAULT]
        background_color = #454545
        text_color = #fafafa
        alpha = 0.8
        border_width = 0
        font_size = 10
        title_size = 8
        ```
        
        `background_color` = the background hex color for the note
        
        `text_color` = the text color for the note
        
        `alpha` = the note window's alpha
        
        `border_width` = border around input box and buttons
        
        `font_size` = font size for text
        
        `title_size` = font size for title
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
