├── .gitattributes ├── .gitignore ├── .installer ├── Photoshop │ ├── preview-deviantart.psd │ └── rainmeter header installer.psd ├── preview-deviantart.jpg ├── preview-github.jpg └── rainmeter header installer.bmp ├── @Resources ├── Fonts │ ├── Font Awesome 5 Free-Regular-400.otf │ ├── Font Awesome 5 Free-Solid-900.otf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Italic.ttf │ ├── Montserrat-Light.ttf │ ├── Montserrat-Regular.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ └── Roboto-Regular.ttf ├── lang_notes.ini ├── lang_settings.ini └── variables.ini ├── Notes-pp ├── Notes.ini ├── Notes.lua └── Notes.txt ├── README.md └── Settings └── Settings.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.gitignore -------------------------------------------------------------------------------- /.installer/Photoshop/preview-deviantart.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.installer/Photoshop/preview-deviantart.psd -------------------------------------------------------------------------------- /.installer/Photoshop/rainmeter header installer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.installer/Photoshop/rainmeter header installer.psd -------------------------------------------------------------------------------- /.installer/preview-deviantart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.installer/preview-deviantart.jpg -------------------------------------------------------------------------------- /.installer/preview-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.installer/preview-github.jpg -------------------------------------------------------------------------------- /.installer/rainmeter header installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/.installer/rainmeter header installer.bmp -------------------------------------------------------------------------------- /@Resources/Fonts/Font Awesome 5 Free-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Font Awesome 5 Free-Regular-400.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Font Awesome 5 Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Font Awesome 5 Free-Solid-900.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /@Resources/lang_notes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/lang_notes.ini -------------------------------------------------------------------------------- /@Resources/lang_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/lang_settings.ini -------------------------------------------------------------------------------- /@Resources/variables.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/@Resources/variables.ini -------------------------------------------------------------------------------- /Notes-pp/Notes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/Notes-pp/Notes.ini -------------------------------------------------------------------------------- /Notes-pp/Notes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/Notes-pp/Notes.lua -------------------------------------------------------------------------------- /Notes-pp/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/Notes-pp/Notes.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/README.md -------------------------------------------------------------------------------- /Settings/Settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raziEiL/Notes-pp/HEAD/Settings/Settings.ini --------------------------------------------------------------------------------