Преглед изворни кода

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