mirror of
				https://github.com/LiteyukiStudio/LiteyukiBot.git
				synced 2025-10-31 05:36:24 +00:00 
			
		
		
		
	feat: 野兽先辈主题包
fix: 插件模块名问题 feat: `nps` -> `npm`
This commit is contained in:
		| @@ -10,10 +10,12 @@ export default defineUserConfig({ | ||||
|     description: "LiteyukiBot | 轻雪机器人 | An OneBot Standard ChatBot | 一个OneBot标准的聊天机器人", | ||||
|     head: [ | ||||
| // 设置 favor.ico,.vuepress/public 下 | ||||
|         [ | ||||
|             'link', {rel: 'icon', href: 'https://cdn.liteyuki.icu/favicon.ico'}, | ||||
|         ['link', {rel: 'icon', href: 'https://cdn.liteyuki.icu/favicon.ico'},], | ||||
|  | ||||
|         ['link', {rel: 'stylesheet', href: 'https://fonts.cdnfonts.com/css/colortube-2'}], | ||||
|  | ||||
|         ['link', {rel: 'stylesheet', href: 'https://cdn.bootcdn.net/ajax/libs/firacode/6.2.0/fira_code.min.css'}], | ||||
|  | ||||
|         ], | ||||
|         [ | ||||
|             "meta", | ||||
|             { | ||||
|   | ||||
| @@ -13,7 +13,7 @@ export default navbar([ | ||||
|         prefix: "usage/", | ||||
|     }, | ||||
|     { | ||||
|         text: "主题商店", | ||||
|         text: "资源商店", | ||||
|         link: "/store/", | ||||
|         prefix: "store/", | ||||
|     } | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								docs/.vuepress/public/assets/fonts/colortube.otf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vuepress/public/assets/fonts/colortube.otf
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -19,10 +19,10 @@ | ||||
|         "link": "https://cdn.liteyuki.icu/static/lrp/MapleMonoFonts.zip" | ||||
|     }, | ||||
|     { | ||||
|         "name": "示例包1", | ||||
|         "name": "野兽先辈主题HomoTheme", | ||||
|         "author": "SnowyKami", | ||||
|         "description": "A simple bot that shows the status of the bot and the server.", | ||||
|         "link": "" | ||||
|         "description": "野兽先辈主题包,114514!", | ||||
|         "link": "https://cdn.liteyuki.icu/static/lrp/HomoTheme.zip" | ||||
|     }, | ||||
|     { | ||||
|         "name": "示例包2", | ||||
|   | ||||
| @@ -1,19 +1,26 @@ | ||||
| import { sidebar } from "vuepress-theme-hope"; | ||||
| import {sidebar} from "vuepress-theme-hope"; | ||||
|  | ||||
| export default sidebar({ | ||||
|   "/": [ | ||||
|     "", | ||||
|     { | ||||
|       text: "项目部署", | ||||
|       icon: "laptop-code", | ||||
|       prefix: "deployment/", | ||||
|       children: "structure", | ||||
|     }, | ||||
|     { | ||||
|       text: "使用手册", | ||||
|       icon: "book", | ||||
|       prefix: "usage/", | ||||
|       children: "structure", | ||||
|     }, | ||||
|   ], | ||||
|     "/": [ | ||||
|         "", | ||||
|         { | ||||
|             text: "项目部署", | ||||
|             icon: "laptop-code", | ||||
|             prefix: "deployment/", | ||||
|             children: "structure", | ||||
|         }, | ||||
|         { | ||||
|             text: "使用手册", | ||||
|             icon: "book", | ||||
|             prefix: "usage/", | ||||
|             children: "structure", | ||||
|         }, | ||||
|         { | ||||
|             text: "资源商店", | ||||
|             icon: "store", | ||||
|             prefix: "store/", | ||||
|             link: "/store/", | ||||
|             children: "structure", | ||||
|         } | ||||
|     ], | ||||
| }); | ||||
|   | ||||
| @@ -1 +1,11 @@ | ||||
| // place your custom styles here | ||||
|  | ||||
| #main-title { | ||||
|   font-family: "ColorTube", serif; | ||||
|   color: #ff0000 !important; /* 你想要的颜色 */ | ||||
|   line-height: 2; | ||||
| } | ||||
|  | ||||
| code { | ||||
|   font-family: "Fira Code", monospace !important; | ||||
| } | ||||
| @@ -1,2 +1,2 @@ | ||||
| // you can change colors here | ||||
| $theme-color: #00a6ff; | ||||
| $theme-color: #00a6ff; | ||||
| @@ -1,193 +1,191 @@ | ||||
| import { hopeTheme } from "vuepress-theme-hope"; | ||||
| import {hopeTheme} from "vuepress-theme-hope"; | ||||
| import navbar from "./navbar.js"; | ||||
| import sidebar from "./sidebar.js"; | ||||
|  | ||||
| export default hopeTheme({ | ||||
|  | ||||
|   hostname: "https://vuepress-theme-hope-docs-demo.netlify.app", | ||||
|     hostname: "https://vuepress-theme-hope-docs-demo.netlify.app", | ||||
|  | ||||
|   author: { | ||||
|     name: "远野千束", | ||||
|     url: "https://snowykami.me", | ||||
|   }, | ||||
|  | ||||
|   iconAssets: "fontawesome-with-brands", | ||||
|  | ||||
|   logo: "https://cdn.liteyuki.icu/static/img/logo.png", | ||||
|  | ||||
|   repo: "https://github.com/snowykami/LiteyukiBot", | ||||
|  | ||||
|   docsDir: "docs", | ||||
|  | ||||
|   // 导航栏 | ||||
|   navbar, | ||||
|  | ||||
|   // 侧边栏 | ||||
|   sidebar, | ||||
|  | ||||
|   // 页脚 | ||||
|   footer: "LiteyukiBot", | ||||
|   displayFooter: true, | ||||
|  | ||||
|   // 加密配置 | ||||
|   encrypt: { | ||||
|     config: { | ||||
|       "/demo/encrypt.html": ["1234"], | ||||
|     }, | ||||
|   }, | ||||
|  | ||||
|   // 多语言配置 | ||||
|   metaLocales: { | ||||
|     editLink: "在 GitHub 上编辑此页", | ||||
|   }, | ||||
|  | ||||
|   // 如果想要实时查看任何改变,启用它。注: 这对更新性能有很大负面影响 | ||||
|   // hotReload: true, | ||||
|  | ||||
|   // 在这里配置主题提供的插件 | ||||
|   plugins: { | ||||
|     searchPro: true, | ||||
|     // search: true, | ||||
|  | ||||
|     blog: true, | ||||
|     comment: { | ||||
|       provider: "Giscus", | ||||
|       repo: "snowykami/LiteyukiBot", | ||||
|       repoId: "R_kgDOHVNKpQ", | ||||
|       category: "Announcements", | ||||
|       categoryId: "DIC_kwDOHVNKpc4CeWxj", | ||||
|     author: { | ||||
|         name: "远野千束", | ||||
|         url: "https://snowykami.me", | ||||
|     }, | ||||
|  | ||||
|     components: { | ||||
|       components: ["Badge", "VPCard"], | ||||
|     }, | ||||
|     iconAssets: "fontawesome-with-brands", | ||||
|  | ||||
|     // 此处开启了很多功能用于演示,你应仅保留用到的功能。 | ||||
|     mdEnhance: { | ||||
|       align: true, | ||||
|       attrs: true, | ||||
|       codetabs: true, | ||||
|       footnote: true, | ||||
|       component: true, | ||||
|       demo: true, | ||||
|       figure: true, | ||||
|       imgLazyload: true, | ||||
|       imgSize: true, | ||||
|       include: true, | ||||
|       mark: true, | ||||
|       stylize: [ | ||||
|         { | ||||
|           matcher: "Recommended", | ||||
|           replacer: ({ tag }) => { | ||||
|             if (tag === "em") | ||||
|               return { | ||||
|                 tag: "Badge", | ||||
|                 attrs: { type: "tip" }, | ||||
|                 content: "Recommended", | ||||
|               }; | ||||
|           }, | ||||
|     logo: "https://cdn.liteyuki.icu/static/img/liteyuki_icon_640.png", | ||||
|  | ||||
|     repo: "https://github.com/snowykami/LiteyukiBot", | ||||
|  | ||||
|     docsDir: "docs", | ||||
|  | ||||
|     // 导航栏 | ||||
|     navbar, | ||||
|  | ||||
|     // 侧边栏 | ||||
|     sidebar, | ||||
|  | ||||
|     // 页脚 | ||||
|     footer: "LiteyukiBot", | ||||
|     displayFooter: true, | ||||
|  | ||||
|     // 加密配置 | ||||
|     encrypt: { | ||||
|         config: { | ||||
|             "/demo/encrypt.html": ["1234"], | ||||
|         }, | ||||
|       ], | ||||
|       sub: true, | ||||
|       sup: true, | ||||
|       tabs: true, | ||||
|       vPre: true, | ||||
|  | ||||
|  | ||||
|       // 在启用之前安装 chart.js | ||||
|       // chart: true, | ||||
|  | ||||
|       // insert component easily | ||||
|  | ||||
|       // 在启用之前安装 echarts | ||||
|       // echarts: true, | ||||
|  | ||||
|       // 在启用之前安装 flowchart.ts | ||||
|       // flowchart: true, | ||||
|  | ||||
|       // gfm requires mathjax-full to provide tex support | ||||
|       // gfm: true, | ||||
|  | ||||
|       // 在启用之前安装 katex | ||||
|       // katex: true, | ||||
|  | ||||
|       // 在启用之前安装 mathjax-full | ||||
|       // mathjax: true, | ||||
|  | ||||
|       // 在启用之前安装 mermaid | ||||
|       // mermaid: true, | ||||
|  | ||||
|       // playground: { | ||||
|       //   presets: ["ts", "vue"], | ||||
|       // }, | ||||
|  | ||||
|       // 在启用之前安装 reveal.js | ||||
|       // revealJs: { | ||||
|       //   plugins: ["highlight", "math", "search", "notes", "zoom"], | ||||
|       // }, | ||||
|  | ||||
|       // 在启用之前安装 @vue/repl | ||||
|       // vuePlayground: true, | ||||
|  | ||||
|       // install sandpack-vue3 before enabling it | ||||
|       // sandpack: true, | ||||
|     }, | ||||
|  | ||||
|     // 如果你需要 PWA。安装 @vuepress/plugin-pwa 并取消下方注释 | ||||
|     // pwa: { | ||||
|     //   favicon: "/favicon.ico", | ||||
|     //   cacheHTML: true, | ||||
|     //   cachePic: true, | ||||
|     //   appendBase: true, | ||||
|     //   apple: { | ||||
|     //     icon: "/assets/icon/apple-icon-152.png", | ||||
|     //     statusBarColor: "black", | ||||
|     //   }, | ||||
|     //   msTile: { | ||||
|     //     image: "/assets/icon/ms-icon-144.png", | ||||
|     //     color: "#ffffff", | ||||
|     //   }, | ||||
|     //   manifest: { | ||||
|     //     icons: [ | ||||
|     //       { | ||||
|     //         src: "/assets/icon/chrome-mask-512.png", | ||||
|     //         sizes: "512x512", | ||||
|     //         purpose: "maskable", | ||||
|     //         type: "image/png", | ||||
|     //       }, | ||||
|     //       { | ||||
|     //         src: "/assets/icon/chrome-mask-192.png", | ||||
|     //         sizes: "192x192", | ||||
|     //         purpose: "maskable", | ||||
|     //         type: "image/png", | ||||
|     //       }, | ||||
|     //       { | ||||
|     //         src: "/assets/icon/chrome-512.png", | ||||
|     //         sizes: "512x512", | ||||
|     //         type: "image/png", | ||||
|     //       }, | ||||
|     //       { | ||||
|     //         src: "/assets/icon/chrome-192.png", | ||||
|     //         sizes: "192x192", | ||||
|     //         type: "image/png", | ||||
|     //       }, | ||||
|     //     ], | ||||
|     //     shortcuts: [ | ||||
|     //       { | ||||
|     //         name: "Demo", | ||||
|     //         short_name: "Demo", | ||||
|     //         url: "/demo/", | ||||
|     //         icons: [ | ||||
|     //           { | ||||
|     //             src: "/assets/icon/guide-maskable.png", | ||||
|     //             sizes: "192x192", | ||||
|     //             purpose: "maskable", | ||||
|     //             type: "image/png", | ||||
|     //           }, | ||||
|     //         ], | ||||
|     //       }, | ||||
|     //     ], | ||||
|     //   }, | ||||
|     // }, | ||||
|   }, | ||||
|     // 多语言配置 | ||||
|     metaLocales: { | ||||
|         editLink: "在 GitHub 上编辑此页", | ||||
|     }, | ||||
|  | ||||
|     // 如果想要实时查看任何改变,启用它。注: 这对更新性能有很大负面影响 | ||||
|     // hotReload: true, | ||||
|  | ||||
|     // 在这里配置主题提供的插件 | ||||
|     plugins: { | ||||
|         searchPro: true, | ||||
|         // search: true, | ||||
|         comment: { | ||||
|             provider: "Giscus", | ||||
|             repo: "snowykami/LiteyukiBot", | ||||
|             repoId: "R_kgDOHVNKpQ", | ||||
|             category: "Announcements", | ||||
|             categoryId: "DIC_kwDOHVNKpc4CeWxj", | ||||
|         }, | ||||
|  | ||||
|         components: { | ||||
|             components: ["Badge", "VPCard"], | ||||
|         }, | ||||
|  | ||||
|         // 此处开启了很多功能用于演示,你应仅保留用到的功能。 | ||||
|         mdEnhance: { | ||||
|             align: true, | ||||
|             attrs: true, | ||||
|             codetabs: true, | ||||
|             footnote: true, | ||||
|             component: true, | ||||
|             demo: true, | ||||
|             figure: true, | ||||
|             imgLazyload: true, | ||||
|             imgSize: true, | ||||
|             include: true, | ||||
|             mark: true, | ||||
|             stylize: [ | ||||
|                 { | ||||
|                     matcher: "Recommended", | ||||
|                     replacer: ({tag}) => { | ||||
|                         if (tag === "em") | ||||
|                             return { | ||||
|                                 tag: "Badge", | ||||
|                                 attrs: {type: "tip"}, | ||||
|                                 content: "Recommended", | ||||
|                             }; | ||||
|                     }, | ||||
|                 }, | ||||
|             ], | ||||
|             sub: true, | ||||
|             sup: true, | ||||
|             tabs: true, | ||||
|             vPre: true, | ||||
|  | ||||
|  | ||||
|             // 在启用之前安装 chart.js | ||||
|             // chart: true, | ||||
|  | ||||
|             // insert component easily | ||||
|  | ||||
|             // 在启用之前安装 echarts | ||||
|             // echarts: true, | ||||
|  | ||||
|             // 在启用之前安装 flowchart.ts | ||||
|             // flowchart: true, | ||||
|  | ||||
|             // gfm requires mathjax-full to provide tex support | ||||
|             // gfm: true, | ||||
|  | ||||
|             // 在启用之前安装 katex | ||||
|             // katex: true, | ||||
|  | ||||
|             // 在启用之前安装 mathjax-full | ||||
|             // mathjax: true, | ||||
|  | ||||
|             // 在启用之前安装 mermaid | ||||
|             // mermaid: true, | ||||
|  | ||||
|             // playground: { | ||||
|             //   presets: ["ts", "vue"], | ||||
|             // }, | ||||
|  | ||||
|             // 在启用之前安装 reveal.js | ||||
|             // revealJs: { | ||||
|             //   plugins: ["highlight", "math", "search", "notes", "zoom"], | ||||
|             // }, | ||||
|  | ||||
|             // 在启用之前安装 @vue/repl | ||||
|             // vuePlayground: true, | ||||
|  | ||||
|             // install sandpack-vue3 before enabling it | ||||
|             // sandpack: true, | ||||
|         }, | ||||
|  | ||||
|         // 如果你需要 PWA。安装 @vuepress/plugin-pwa 并取消下方注释 | ||||
|         // pwa: { | ||||
|         //   favicon: "/favicon.ico", | ||||
|         //   cacheHTML: true, | ||||
|         //   cachePic: true, | ||||
|         //   appendBase: true, | ||||
|         //   apple: { | ||||
|         //     icon: "/assets/icon/apple-icon-152.png", | ||||
|         //     statusBarColor: "black", | ||||
|         //   }, | ||||
|         //   msTile: { | ||||
|         //     image: "/assets/icon/ms-icon-144.png", | ||||
|         //     color: "#ffffff", | ||||
|         //   }, | ||||
|         //   manifest: { | ||||
|         //     icons: [ | ||||
|         //       { | ||||
|         //         src: "/assets/icon/chrome-mask-512.png", | ||||
|         //         sizes: "512x512", | ||||
|         //         purpose: "maskable", | ||||
|         //         type: "image/png", | ||||
|         //       }, | ||||
|         //       { | ||||
|         //         src: "/assets/icon/chrome-mask-192.png", | ||||
|         //         sizes: "192x192", | ||||
|         //         purpose: "maskable", | ||||
|         //         type: "image/png", | ||||
|         //       }, | ||||
|         //       { | ||||
|         //         src: "/assets/icon/chrome-512.png", | ||||
|         //         sizes: "512x512", | ||||
|         //         type: "image/png", | ||||
|         //       }, | ||||
|         //       { | ||||
|         //         src: "/assets/icon/chrome-192.png", | ||||
|         //         sizes: "192x192", | ||||
|         //         type: "image/png", | ||||
|         //       }, | ||||
|         //     ], | ||||
|         //     shortcuts: [ | ||||
|         //       { | ||||
|         //         name: "Demo", | ||||
|         //         short_name: "Demo", | ||||
|         //         url: "/demo/", | ||||
|         //         icons: [ | ||||
|         //           { | ||||
|         //             src: "/assets/icon/guide-maskable.png", | ||||
|         //             sizes: "192x192", | ||||
|         //             purpose: "maskable", | ||||
|         //             type: "image/png", | ||||
|         //           }, | ||||
|         //         ], | ||||
|         //       }, | ||||
|         //     ], | ||||
|         //   }, | ||||
|         // }, | ||||
|     }, | ||||
| }); | ||||
|   | ||||
| @@ -7,7 +7,7 @@ bgImage: | ||||
| bgImageDark: | ||||
| bgImageStyle: | ||||
|   background-attachment: fixed | ||||
| heroText: LiteyukiBot 6 | ||||
| heroText: LiteyukiBot | ||||
| tagline: 轻雪机器人,一个以轻量和简洁为设计理念基于Nonebot2的OneBot标准聊天机器人 | ||||
|  | ||||
| actions: | ||||
|   | ||||
| @@ -1 +1,6 @@ | ||||
| <storeComp/> | ||||
| --- | ||||
| title: 资源商店 | ||||
| icon: store | ||||
| index: false | ||||
| --- | ||||
| <storeComp /> | ||||
| @@ -5,50 +5,70 @@ order: 1 | ||||
| category: 使用手册 | ||||
| --- | ||||
|  | ||||
| ## 基础插件命令 | ||||
| ## 基础插件 | ||||
|  | ||||
| #### 命令前有[S]的表示仅超级用户可用,[O]和[A]分别为群主和群管可用,[P]为私聊可用 | ||||
|  | ||||
| ### 轻雪`liteyuki` | ||||
| ### **轻雪 `liteyuki`** | ||||
|  | ||||
| ```shell | ||||
| [S]reload-liteyuki  # 重载轻雪 | ||||
| [S]update-liteyuki  # 更新轻雪 | ||||
| [S]liteecho # 查看当前bot | ||||
| [S]config set <key> value  # 添加配置项,若存在则会覆盖,输入值会被执行,以便于转换为正确的值,"10"和10是不一样的 | ||||
| [S]config get [key]  # 查询配置项,不带key返回配置项列表,推荐私聊使用 | ||||
| [S]reload-resources  # 重载资源 | ||||
| [S]switch-image-mode  # 切换图片模式,该功能需要commit:505468b及以后的Lagrange.OneBot,在普通图片和Markdown图片之间切换,后者更大但有失败的可能 | ||||
| 仅超级用户 | ||||
| reload-liteyuki  # 重载轻雪 | ||||
| update-liteyuki  # 更新轻雪 | ||||
| liteecho # 查看当前bot | ||||
| config set <key> value  # 添加配置项,若存在则会覆盖,输入值会被执行以转换为正确的类型,"10"和10是不一样的 | ||||
| config get [key]  # 查询配置项,不带key返回配置项列表,推荐私聊使用 | ||||
| switch-image-mode  # 在普通图片和Markdown大图之间切换,该功能需要commit:505468b及以后的Lagrange.OneBot, | ||||
|  | ||||
| 所有人可用 | ||||
| liteyuki-docs  # 查看轻雪文档 | ||||
| # 上述两个命令修改的配置项在数据库中保存,但是优先级低于配置文件,如果配置文件中存在相同的配置项,将会使用配置文件中的配置 | ||||
| ------ | ||||
| 别名: reload-liteyuki 重启轻雪, update-liteyuki 更新轻雪, reload-resources 重载资源, config 配置, set 设置, get 查询,  | ||||
| switch-image-mode 切换图片模式, liteyuki-docs 轻雪文档 | ||||
| ``` | ||||
|  | ||||
| ### 轻雪包管理器 `liteyuki_npm` | ||||
| 命令别名 | ||||
|  | ||||
| ```shell | ||||
| [S]nps update  # 更新插件索引 | ||||
| [S]nps install <plugin_name>  # 安装插件 | ||||
| [S]nps uninstall <plugin_name>  # 卸载插件 | ||||
| [S]nps search <keywords...>  # 通过关键词搜索插件 | ||||
| ------ | ||||
| [AOSP]npm enable <plugin_name>  # 当前会话启用插件 | ||||
| [AOSP]npm disable <plugin_name>  # 当前会话禁用插件 | ||||
| [S]npm enable-global <plugin_name>  # 全局启用插件 | ||||
| [S]npm disable-global <plugin_name>  # 全局禁用插件 | ||||
| list-plugin [page] [num] # 列出所有插件 page为页数,num为每页显示数量 | ||||
| ------ | ||||
| [S]rpm list [page] [num]  # 列出所有资源包 page为页数,num为每页显示数量 | ||||
| [S]rpm load <resource_pack_name>  # 加载资源包 | ||||
| [S]rpm unload <resource_pack_name>  # 卸载资源包 | ||||
| [S]rpm change <resource_pack_name>  # 修改优先级 | ||||
| [S]rpm reload # 重载所有资源包 | ||||
| ------ | ||||
| 别名: nps 插件商店, npm 插件管理, update 更新, install 安装, uninstall 卸载, search 搜索, | ||||
| enable 启用, disable 停用, enable-global 全局启用, disable-global 全局停用, list-plugin 列出插件/插件列表, | ||||
| rpm 资源包, load 加载, unload 卸载, change 更改, reload 重载, list 列表/列出 | ||||
| reload-liteyuki 重启轻雪,  | ||||
| update-liteyuki 更新轻雪,  | ||||
| reload-resources 重载资源,  | ||||
| config 配置 | set 设置 | get 查询,  | ||||
| switch-image-mode 切换图片模式,  | ||||
| liteyuki-docs 轻雪文档 | ||||
| ``` | ||||
|  | ||||
| ### **插件/包管理器 `liteyuki_pacman`** | ||||
|  | ||||
| - 插件管理 | ||||
|  | ||||
| ```shell | ||||
| # 仅超级用户 | ||||
| npm update  # 更新插件商店索引 | ||||
| npm install <plugin_name>  # 安装插件 | ||||
| npm uninstall <plugin_name>  # 卸载插件 | ||||
| npm search <keywords...>  # 通过关键词搜索插件 | ||||
| npm enable-global <plugin_name>  # 全局启用插件 | ||||
| npm disable-global <plugin_name>  # 全局禁用插件 | ||||
|  | ||||
| # 群聊仅群主、管理员、超级用户可用,私聊所有人可用 | ||||
| npm enable <plugin_name>  # 当前会话启用插件 | ||||
| npm disable <plugin_name>  # 当前会话禁用插件 | ||||
| npm list [page] [num] # 列出所有插件 page为页数,num为每页显示数量 | ||||
| ``` | ||||
|  | ||||
| - 资源包管理 | ||||
|  | ||||
| ```shell | ||||
| # 仅超级用户 | ||||
| rpm list [page] [num]  # 列出所有资源包 page为页数,num为每页显示数量 | ||||
| rpm load <pack_name>  # 加载资源包 | ||||
| rpm unload <pack_name>  # 卸载资源包 | ||||
| rpm change <pack_name>  # 修改优先级 | ||||
| rpm reload # 重载所有资源包 | ||||
| ``` | ||||
|  | ||||
| 命令别名 | ||||
|  | ||||
| ```shell | ||||
| npm 插件管理 | update 更新 | install 安装 | uninstall 卸载 | search 搜索 | ||||
| enable 启用 | disable 停用 | enable-global 全局启用 | disable-global 全局停用 | list-plugin 插件列表 | ||||
| rpm 资源包 | load 加载 | unload 卸载 | change 更改 | reload 重载 | list 列表 | ||||
| ``` | ||||
|  | ||||
| ```shell | ||||
| @@ -58,14 +78,18 @@ rpm 资源包, load 加载, unload 卸载, change 更改, reload 重载, list  | ||||
|  | ||||
| ``` | ||||
|  | ||||
| ### 轻雪用户管理`liteyuki_user` | ||||
| ### **用户管理`liteyuki_user`** | ||||
|  | ||||
| ```shell | ||||
| profile  # 查看用户信息菜单 | ||||
| profile set <key> [value]  # 设置用户信息或打开属性设置菜单 | ||||
| profile get <key>  # 获取用户信息 | ||||
| ------ | ||||
| 别名: profile 个人信息, set 设置, get 查询 | ||||
| ``` | ||||
|  | ||||
| 命令别名 | ||||
|  | ||||
| ```shell | ||||
| profile 个人信息 | set 设置 | get 查询 | ||||
| ``` | ||||
|  | ||||
| **参数**:`<param>`为必填参数,`[option]`为可选参数。 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user