// 个人信息
const personalData = {
domain: "example.com",
// whoami
username: "guest",
permission: "guest",
// about
name: "Name",
motto: "Motto(座右铭)",
website: "https://example.com",
blog: "https://example.com/blog",
// social
email: "email@example.com",
github: "https://github.com/",
QQ: "123456789",
bilibili: "https://space.bilibili.com/",
//projects
project1: "https://github.com/",
// ASCII Logo
asciiLogo: `
_| _| _|_|_|_| _| _| _|_|
_| _| _| _| _| _| _|
_|_|_|_| _|_|_| _| _| _| _|
_| _| _| _| _| _| _|
_| _| _|_|_|_| _|_|_|_| _|_|_|_| _|_|
`,
// help
helpCommands: [
{ command: "help", description: "显示可用命令列表" },
{ command: "about", description: "显示关于信息" },
{ command: "social", description: "显示社交媒体链接" },
{ command: "projects", description: "显示项目链接" },
{ command: "clear", description: "清除终端输出" },
{ command: "whoami", description: "显示当前用户信息" },
{ command: "echo" , description: "输出文字" },
{ command: "date", description: "显示日期" },
// extension
{ command: "images", description: "显示图像" },
{ command: "download", description: "下载文件" },
{ command: "hitokoto", description: "显示一言" },
{ command: "weather", description: "显示随机地区的天气信息" },
{ command: "know", description: "显示'你知道吗?':)" },
{ command: "joke", description: "显示神秘的冷笑话" },
{ command: "readme", description: "显示自述" },
{ command: "note", description: "显示神秘的记事本:(" }
]
};