├── .gitignore ├── LICENSE ├── Mango ├── AlertShortcuts.txt ├── CertAction.txt ├── Mail_NAME.txt ├── Mango.py ├── Mango.spec ├── ReLa.txt ├── Restart.txt ├── SetTime.txt ├── Shortcuts_NAME.txt ├── alipay10.png ├── alipay20.png ├── alipay5.png ├── alipay50.png ├── mango-dsk.icns ├── mango-logo.icns ├── mango-logo.png ├── wechat10.png ├── wechat20.png ├── wechat5.png └── wechat50.png ├── README.md └── pics └── CleanShot 2023-10-31 at 09.59.35-trimmed - 01.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/LICENSE -------------------------------------------------------------------------------- /Mango/AlertShortcuts.txt: -------------------------------------------------------------------------------- 1 | Mango -------------------------------------------------------------------------------- /Mango/CertAction.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Mango/Mail_NAME.txt: -------------------------------------------------------------------------------- 1 | Mail -------------------------------------------------------------------------------- /Mango/Mango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/Mango.py -------------------------------------------------------------------------------- /Mango/Mango.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/Mango.spec -------------------------------------------------------------------------------- /Mango/ReLa.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Mango/Restart.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Mango/SetTime.txt: -------------------------------------------------------------------------------- 1 | 15 -------------------------------------------------------------------------------- /Mango/Shortcuts_NAME.txt: -------------------------------------------------------------------------------- 1 | Shortcuts -------------------------------------------------------------------------------- /Mango/alipay10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/alipay10.png -------------------------------------------------------------------------------- /Mango/alipay20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/alipay20.png -------------------------------------------------------------------------------- /Mango/alipay5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/alipay5.png -------------------------------------------------------------------------------- /Mango/alipay50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/alipay50.png -------------------------------------------------------------------------------- /Mango/mango-dsk.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/mango-dsk.icns -------------------------------------------------------------------------------- /Mango/mango-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/mango-logo.icns -------------------------------------------------------------------------------- /Mango/mango-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/mango-logo.png -------------------------------------------------------------------------------- /Mango/wechat10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/wechat10.png -------------------------------------------------------------------------------- /Mango/wechat20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/wechat20.png -------------------------------------------------------------------------------- /Mango/wechat5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/wechat5.png -------------------------------------------------------------------------------- /Mango/wechat50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/Mango/wechat50.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/README.md -------------------------------------------------------------------------------- /pics/CleanShot 2023-10-31 at 09.59.35-trimmed - 01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-the-hito/Mango/HEAD/pics/CleanShot 2023-10-31 at 09.59.35-trimmed - 01.gif --------------------------------------------------------------------------------