diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2025-11-28 19:10:16 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2025-11-28 19:10:16 -0500 |
| commit | 88d589f45415cab3615105e0b1b6f951c5321d95 (patch) | |
| tree | d60ced8b7f712f455c0d3693b5034e1d79c2ba84 | |
| parent | 8090ee305b8759beb2afce335640db244c132455 (diff) | |
| download | voussoir-88d589f45415cab3615105e0b1b6f951c5321d95.tar.gz voussoir-88d589f45415cab3615105e0b1b6f951c5321d95.tar.xz | |
fix exfat conflict and add udev rule for hid devices
| -rw-r--r-- | archiso_config/packages.x86_64 | 1 | ||||
| -rw-r--r-- | installer/run.sh | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/archiso_config/packages.x86_64 b/archiso_config/packages.x86_64 index b83a4c0..c4a1f4f 100644 --- a/archiso_config/packages.x86_64 +++ b/archiso_config/packages.x86_64 @@ -36,7 +36,6 @@ efibootmgr entr espeakup ethtool -exfat-utils exfatprogs f2fs-tools fastfetch diff --git a/installer/run.sh b/installer/run.sh index ff9ff43..97601d8 100644 --- a/installer/run.sh +++ b/installer/run.sh @@ -233,7 +233,6 @@ pacstrap -K "$_install_path" \ entr \ espeakup \ ethtool \ - exfat-utils \ exfatprogs \ f2fs-tools \ fastfetch \ @@ -486,6 +485,11 @@ cat > "${_install_path}"/etc/udev/rules.d/99-removable.rules <<EOF ACTION=="add", SUBSYSTEM=="thunderbolt", ATTR{authorized}=="0", ATTR{authorized}="1" EOF +cat > "${_install_path}"/etc/udev/rules.d/99-hidraw.rules <<EOF +# /etc/udev/rules.d/99-hidraw.rules +KERNEL=="hidraw*", SUBSYSTEM=="hidraw", GROUP="wheel", MODE="0660", TAG+="uaccess" +EOF + cat > "${_install_path}"/etc/modprobe.d/v4l2loopback.conf <<EOF options v4l2loopback video_nr=10,11,12 card_label="OBS Virtual Camera,Extra Loopback 1,Extra Loopback 2" EOF |
