skill-launcher
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkillLauncher 启动器
SkillLauncher Launcher
启动或重启 SkillLauncher 进程。
Start or restart the SkillLauncher process.
路径说明
Path Description
SkillLauncher 编译后的可执行文件位于项目目录下:
SkillLauncher/.build/release/SkillLauncher执行前需要先确认当前目录下有 SkillLauncher 项目。
The compiled executable file of SkillLauncher is located in the project directory:
SkillLauncher/.build/release/SkillLauncherYou need to confirm that the SkillLauncher project exists in the current directory before execution.
操作
Operations
-
检查是否已运行bash
pgrep -x SkillLauncher -
启动(如果没运行)bash
nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 & -
重启(先杀后启)bash
pkill -x SkillLauncher sleep 0.5 nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 & -
关闭bash
pkill -x SkillLauncher
-
Check if it's runningbash
pgrep -x SkillLauncher -
Start (if not running)bash
nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 & -
Restart (kill first then start)bash
pkill -x SkillLauncher sleep 0.5 nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 & -
Shut downbash
pkill -x SkillLauncher
用法
Usage
- "启动 launcher" → 启动进程
- "重启 launcher" → 重启进程
- "关闭 launcher" → 停止进程
- "Start launcher" → Start the process
- "Restart launcher" → Restart the process
- "Shut down launcher" → Stop the process
注意
Notes
- 首次使用需要先编译:
cd SkillLauncher && swift build -c release - 首次运行需要授予「辅助功能」权限
- 使用 Option+Space 唤起窗口
- Compilation is required for first-time use:
cd SkillLauncher && swift build -c release - First-time run requires granting "Accessibility" permissions
- Use Option+Space to bring up the window