# hdy_test **Repository Path**: IcedFreeBird/hdy_test ## Basic Information - **Project Name**: hdy_test - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-16 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - https://gitee.com/patchfew/Hyprland - - https://github.com/JaKooLit/Debian-Hyprland - - sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Debian-Hyprland/main/auto-install.sh) - - https://www.bilibili.com/opus/1073042740816642057 - - https://github.com/clash-verge-rev/clash-verge-rev/releases/tag/v2.4.3 # This system was installed using removable media other than # CD/DVD/BD (e.g. USB stick, SD card, ISO image file). # The matching "deb cdrom" entries were disabled at the end # of the installation process. # For information about how to configure apt package sources, # see the sources.list(5) manual. deb https://mirrors.aliyun.com/debian/ trixie main contrib non-free non-free-firmware deb-src https://mirrors.aliyun.com/debian/ trixie main contrib non-free non-free-firmware deb https://mirrors.aliyun.com/debian-security/ trixie-security main contrib non-free non-free-firmware deb-src https://mirrors.aliyun.com/debian-security/ trixie-security main contrib non-free non-free-firmware deb https://mirrors.aliyun.com/debian/ trixie-updates main contrib non-free non-free-firmware deb-src https://mirrors.aliyun.com/debian/ trixie-updates main contrib non-free non-free-firmware deb https://mirrors.aliyun.com/debian/ trixie-backports main contrib non-free non-free-firmware deb-src https://mirrors.aliyun.com/debian/ trixie-backports main contrib non-free non-free-firmware mac 键盘 # 安装依赖 sudo apt install git dkms build-essential linux-headers-$(uname -r) # 克隆新驱动 cd /tmp git clone https://github.com/t2linux/apple-bce-drv.git cd apple-bce-drv # 创建 dkms 配置 cat > dkms.conf << 'EOF' PACKAGE_NAME="apple-bce" PACKAGE_VERSION="0.2" BUILT_MODULE_NAME[0]="apple-bce" DEST_MODULE_LOCATION[0]="/kernel/drivers/misc" AUTOINSTALL="yes" EOF # 安装到 dkms sudo mkdir -p /usr/src/apple-bce-0.2 sudo cp -r * /usr/src/apple-bce-0.2/ # 构建并安装 sudo dkms add -m apple-bce -v 0.2 sudo dkms build -m apple-bce -v 0.2 sudo dkms install -m apple-bce -v 0.2 # 加载模块 sudo modprobe apple-bce # 开机自动加载 echo "apple-bce" | sudo tee /etc/modules-load.d/apple-bce.conf