Forráskód Böngészése

add scripts to enable and disable hid modules

Noah Vogt 1 éve
szülő
commit
a1b04e4df1
2 módosított fájl, 10 hozzáadás és 0 törlés
  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