skill-launcher

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

SkillLauncher 启动器

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/SkillLauncher
You need to confirm that the SkillLauncher project exists in the current directory before execution.

操作

Operations

  1. 检查是否已运行
    bash
    pgrep -x SkillLauncher
  2. 启动(如果没运行)
    bash
    nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &
  3. 重启(先杀后启)
    bash
    pkill -x SkillLauncher
    sleep 0.5
    nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &
  4. 关闭
    bash
    pkill -x SkillLauncher
  1. Check if it's running
    bash
    pgrep -x SkillLauncher
  2. Start (if not running)
    bash
    nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &
  3. Restart (kill first then start)
    bash
    pkill -x SkillLauncher
    sleep 0.5
    nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &
  4. Shut down
    bash
    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