# QuicDone **Repository Path**: mutouyun/QuicDone ## Basic Information - **Project Name**: QuicDone - **Description**: Do what you want quickly! - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-03-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # QuicDone Do what you want quickly! ### The commands: HK.closeMonitor() - 关闭显示器 HK.quit() - 退出程序 HK.message(text) - 弹出提示框 HK.exec(cmd, param) - 执行程序/命令 HK.shell(cmd) - 执行cmd命令 HK.version() - 显示程序版本号 HKStore.configs - 临时存储 HKStore.setConfig(key, val) - 写入临时变量 HKStore.datas - 持久化存储(读取文件QuicDone.dat) HKStore.setData(key, val) - 写入持久化变量(即将数据存入文件QuicDone.dat中) ### QuicDone.config usage: ```json { "log": true, // Output log file or not. "The key what you want to handle.": "The script with javascript. You could just give a path to point to a js file." } ``` ### Here is a example: ```json { "log": true, "WIN + C": "HK.exec(\"calc\")", "WIN + N": "HK.exec(\"notepad\")", "ALT + CTRL + M": "HK.closeMonitor()", "ALT + CTRL + O": "HK.message(\"西子,哦嗨哟~~\")", "ALT + CTRL + SHIFT + V": "HK.version()", "ALT + CTRL + SHIFT + WIN + ESC": "HK.quit()" } ```