Browse Source

add scripts to enable and disable hid modules

Noah Vogt 1 năm trước cách đây
mục cha
commit
a1b04e4df1
2 tập tin đã thay đổi với 10 bổ sung0 xóa
  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