소스 검색

add scripts to enable and disable hid modules

Noah Vogt 1 년 전
부모
커밋
a1b04e4df1
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      disable-hid
  2. 5 0
      enable-hid

+ 5 - 0
disable-hid

@@ -0,0 +1,5 @@
+#!/bin/sh
+
+rfkill block bluetooth
+modprobe -r usbhid
+modprobe -r i2c_hid_acpi

+ 5 - 0
enable-hid

@@ -0,0 +1,5 @@
+#!/bin/sh
+
+rfkill unblock bluetooth
+modprobe usbhid
+modprobe i2c_hid_acpi