[*arkanelinux*] utilize depends
This commit is contained in:
parent
9d68dadfe2
commit
5582a68a22
13 changed files with 434 additions and 123 deletions
|
@ -1 +1 @@
|
|||
shared/arkanelinux-generic
|
||||
depends/arkanelinux-generic
|
||||
|
|
|
@ -0,0 +1,142 @@
|
|||
# Valve USB devices
|
||||
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Steam Controller udev write access
|
||||
KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"
|
||||
|
||||
# Valve HID devices over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Valve HID devices over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0268*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 wireless adapter over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Faceoff Wired Pro Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0180", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PDP Wired Fight Pad Pro for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0185", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a713", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wireless Controller for Nintendo Switch we have to use
|
||||
# ATTRS{name} since VID/PID are reported as zeros. We use /bin/sh
|
||||
# instead of udevadm directly becuase we need to use '*' glob at the
|
||||
# end of "hidraw" name since we don't know the index it'd have.
|
||||
#
|
||||
KERNEL=="input*", ATTRS{name}=="Lic Pro Controller", RUN{program}+="/bin/sh -c 'udevadm test-builtin uaccess /sys/%p/../../hidraw/hidraw*'"
|
||||
|
||||
# Afterglow Deluxe+ Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0188", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nacon PS4 Revolution Pro Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju 2 Tournament Edition
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1007", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera EVO Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1008", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller Tournament Edition over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:100A*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over USB
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1004", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over PC Bluetooth
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:1009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightPad PRO
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8250", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightStick TE S+
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Brooks Universal Fighting Board
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0c30", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# EMiO Elite Controller for PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# ZeroPlus P4 (hitbox)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORI RAP4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS Plus
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD mini 4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00ee", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Armor Armor 3 Pad PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# STRIKEPAD PS4 Grip Add-on
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c5", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# NVIDIA Shield Portable (2013 - NVIDIA_Controller_v01.01 - In-Home Streaming only)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7203", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2015 - NVIDIA_Controller_v01.03 over USB hidraw)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7210", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
|
||||
KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Astro C40
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Thrustmaster eSwap Pro
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="044f", ATTRS{idProduct}=="d00e", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Performance Designed Products Victrix Pro FS-12 for PS4 & PS5
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="020c", MODE="0660", TAG+="uaccess"
|
|
@ -51,7 +51,6 @@ pipewire-pulse
|
|||
power-profiles-daemon
|
||||
spice-vdagent
|
||||
switcheroo-control
|
||||
terminus-font
|
||||
webp-pixbuf-loader
|
||||
wireplumber
|
||||
xdg-desktop-portal-gnome
|
||||
|
@ -62,6 +61,4 @@ xdg-utils
|
|||
arkane-application-cleaner
|
||||
arkane-flatpak-init
|
||||
arkane-wallpapers
|
||||
arkdep
|
||||
libnss-extrausers
|
||||
skel-arkane
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
apparmor
|
||||
arch-install-scripts
|
||||
archiso
|
||||
arkdep
|
||||
bind
|
||||
binutils
|
||||
btrfs-progs
|
||||
|
@ -12,6 +13,7 @@ f2fs-tools
|
|||
fakeroot
|
||||
git
|
||||
glibc-locales
|
||||
libnss-extrausers
|
||||
libva-mesa-driver
|
||||
man-db
|
||||
mesa
|
||||
|
@ -22,10 +24,13 @@ openssh
|
|||
pacman-contrib
|
||||
plymouth
|
||||
podman
|
||||
podman-compose
|
||||
pv
|
||||
qemu-guest-agent
|
||||
skel-arkane
|
||||
sof-firmware
|
||||
sudo
|
||||
terminus-font
|
||||
tpm2-tools
|
||||
tpm2-tss
|
||||
tpm2-tss-engine
|
|
@ -1,8 +1,3 @@
|
|||
base
|
||||
linux
|
||||
linux-firmware
|
||||
amd-ucode
|
||||
intel-ucode
|
||||
arkane-keyring
|
||||
dracut
|
||||
dbus-broker-units
|
||||
|
|
1
arkdep-build.d/test-arkanelinux-kde/depends.list
Normal file
1
arkdep-build.d/test-arkanelinux-kde/depends.list
Normal file
|
@ -0,0 +1 @@
|
|||
depends/arkanelinux-generic
|
|
@ -0,0 +1,142 @@
|
|||
# Valve USB devices
|
||||
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Steam Controller udev write access
|
||||
KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"
|
||||
|
||||
# Valve HID devices over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Valve HID devices over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0268*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 wireless adapter over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Faceoff Wired Pro Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0180", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PDP Wired Fight Pad Pro for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0185", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a713", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wireless Controller for Nintendo Switch we have to use
|
||||
# ATTRS{name} since VID/PID are reported as zeros. We use /bin/sh
|
||||
# instead of udevadm directly becuase we need to use '*' glob at the
|
||||
# end of "hidraw" name since we don't know the index it'd have.
|
||||
#
|
||||
KERNEL=="input*", ATTRS{name}=="Lic Pro Controller", RUN{program}+="/bin/sh -c 'udevadm test-builtin uaccess /sys/%p/../../hidraw/hidraw*'"
|
||||
|
||||
# Afterglow Deluxe+ Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0188", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nacon PS4 Revolution Pro Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju 2 Tournament Edition
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1007", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera EVO Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1008", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller Tournament Edition over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:100A*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over USB
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1004", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over PC Bluetooth
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:1009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightPad PRO
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8250", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightStick TE S+
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Brooks Universal Fighting Board
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0c30", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# EMiO Elite Controller for PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# ZeroPlus P4 (hitbox)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORI RAP4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS Plus
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD mini 4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00ee", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Armor Armor 3 Pad PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# STRIKEPAD PS4 Grip Add-on
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c5", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# NVIDIA Shield Portable (2013 - NVIDIA_Controller_v01.01 - In-Home Streaming only)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7203", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2015 - NVIDIA_Controller_v01.03 over USB hidraw)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7210", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
|
||||
KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Astro C40
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Thrustmaster eSwap Pro
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="044f", ATTRS{idProduct}=="d00e", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Performance Designed Products Victrix Pro FS-12 for PS4 & PS5
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="020c", MODE="0660", TAG+="uaccess"
|
|
@ -1,64 +1,3 @@
|
|||
apparmor
|
||||
arch-install-scripts
|
||||
archiso
|
||||
bind
|
||||
binutils
|
||||
btrfs-progs
|
||||
cups
|
||||
cups-pdf
|
||||
debugedit
|
||||
distrobox
|
||||
dosfstools
|
||||
efibootmgr
|
||||
f2fs-tools
|
||||
fakeroot
|
||||
flatpak
|
||||
git
|
||||
glibc-locales
|
||||
ibus-typing-booster
|
||||
libva-mesa-driver
|
||||
man-db
|
||||
mesa
|
||||
mesa-vdpau
|
||||
mkinitcpio
|
||||
mkinitcpio-archiso
|
||||
neovim
|
||||
networkmanager
|
||||
networkmanager-openconnect
|
||||
networkmanager-openvpn
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
openssh
|
||||
pacman-contrib
|
||||
pipewire
|
||||
pipewire-alsa
|
||||
pipewire-audio
|
||||
pipewire-jack
|
||||
pipewire-pulse
|
||||
plymouth
|
||||
podman
|
||||
pv
|
||||
qemu-guest-agent
|
||||
sof-firmware
|
||||
spice-vdagent
|
||||
sudo
|
||||
switcheroo-control
|
||||
terminus-font
|
||||
tpm2-tools
|
||||
tpm2-tss
|
||||
tpm2-tss-engine
|
||||
vulkan-intel
|
||||
vulkan-mesa-layers
|
||||
vulkan-nouveau
|
||||
vulkan-radeon
|
||||
wget
|
||||
wireplumber
|
||||
zsh
|
||||
zsh-autosuggestions
|
||||
zsh-completions
|
||||
zsh-syntax-highlighting
|
||||
|
||||
# Plasma
|
||||
colord-kde
|
||||
discover
|
||||
|
@ -110,6 +49,5 @@ xdg-utils
|
|||
# Arkane Linux
|
||||
arkane-application-cleaner
|
||||
arkane-wallpapers
|
||||
arkdep
|
||||
libnss-extrausers
|
||||
skel-arkane
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
base
|
||||
linux
|
||||
linux-firmware
|
||||
amd-ucode
|
||||
intel-ucode
|
||||
arkane-keyring
|
||||
dracut
|
||||
dbus-broker-units
|
||||
|
|
1
arkdep-build.d/test-arkanelinux-pantheon/depends.list
Normal file
1
arkdep-build.d/test-arkanelinux-pantheon/depends.list
Normal file
|
@ -0,0 +1 @@
|
|||
depends/arkanelinux-generic
|
|
@ -0,0 +1,142 @@
|
|||
# Valve USB devices
|
||||
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Steam Controller udev write access
|
||||
KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"
|
||||
|
||||
# Valve HID devices over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Valve HID devices over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 3 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0268*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 wireless adapter over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# DualShock 4 Slim over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PS5 DualSense controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over USB hidraw
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nintendo Switch Pro Controller over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Faceoff Wired Pro Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0180", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PDP Wired Fight Pad Pro for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0185", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a713", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# PowerA Wireless Controller for Nintendo Switch we have to use
|
||||
# ATTRS{name} since VID/PID are reported as zeros. We use /bin/sh
|
||||
# instead of udevadm directly becuase we need to use '*' glob at the
|
||||
# end of "hidraw" name since we don't know the index it'd have.
|
||||
#
|
||||
KERNEL=="input*", ATTRS{name}=="Lic Pro Controller", RUN{program}+="/bin/sh -c 'udevadm test-builtin uaccess /sys/%p/../../hidraw/hidraw*'"
|
||||
|
||||
# Afterglow Deluxe+ Wired Controller for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0188", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Nacon PS4 Revolution Pro Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju 2 Tournament Edition
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1007", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera EVO Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1008", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju PS4 Controller Tournament Edition over bluetooth hidraw
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:100A*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over USB
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1004", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Raiju Ultimate over PC Bluetooth
|
||||
KERNEL=="hidraw*", KERNELS=="*1532:1009*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Razer Panthera Arcade Stick
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightPad PRO
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8250", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Mad Catz - Street Fighter V Arcade FightStick TE S+
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Brooks Universal Fighting Board
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0c30", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# EMiO Elite Controller for PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# ZeroPlus P4 (hitbox)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORI RAP4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD 4 FPS Plus
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD for Nintendo Switch
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# HORIPAD mini 4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00ee", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Armor Armor 3 Pad PS4
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# STRIKEPAD PS4 Grip Add-on
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c5", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# NVIDIA Shield Portable (2013 - NVIDIA_Controller_v01.01 - In-Home Streaming only)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7203", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2015 - NVIDIA_Controller_v01.03 over USB hidraw)
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7210", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
|
||||
|
||||
# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
|
||||
KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Astro C40
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Thrustmaster eSwap Pro
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="044f", ATTRS{idProduct}=="d00e", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Performance Designed Products Victrix Pro FS-12 for PS4 & PS5
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="020c", MODE="0660", TAG+="uaccess"
|
|
@ -1,34 +1,19 @@
|
|||
apparmor
|
||||
arch-install-scripts
|
||||
archiso
|
||||
arkane-application-cleaner
|
||||
arkane-wallpapers
|
||||
arkdep
|
||||
bind
|
||||
binutils
|
||||
bluez
|
||||
bluez-cups
|
||||
bluez-plugins
|
||||
bluez-utils
|
||||
btrfs-progs
|
||||
capnet-assist
|
||||
cups
|
||||
cups-pdf
|
||||
dconf
|
||||
debugedit
|
||||
distrobox
|
||||
dosfstools
|
||||
efibootmgr
|
||||
elementary-icon-theme
|
||||
elementary-wallpapers
|
||||
epiphany
|
||||
f2fs-tools
|
||||
fakeroot
|
||||
flatpak
|
||||
fuse
|
||||
gala
|
||||
git
|
||||
glibc-locales
|
||||
gnome-keyring
|
||||
gnome-session
|
||||
gnome-settings-daemon
|
||||
|
@ -49,27 +34,15 @@ gvfs-nfs
|
|||
gvfs-smb
|
||||
gvfs-wsdd
|
||||
ibus-typing-booster
|
||||
libnss-extrausers
|
||||
libva-mesa-driver
|
||||
lightdm
|
||||
lightdm-pantheon-greeter
|
||||
man-db
|
||||
mesa
|
||||
mesa-vdpau
|
||||
mkinitcpio
|
||||
mkinitcpio-archiso
|
||||
neovim
|
||||
networkmanager
|
||||
networkmanager-openconnect
|
||||
networkmanager-openvpn
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
onboard
|
||||
openssh
|
||||
orca
|
||||
pacman-contrib
|
||||
pantheon-applications-menu
|
||||
pantheon-applications-menu
|
||||
pantheon-calculator
|
||||
pantheon-camera
|
||||
|
@ -96,17 +69,10 @@ pipewire-audio
|
|||
pipewire-jack
|
||||
pipewire-pulse
|
||||
plank
|
||||
plymouth
|
||||
podman
|
||||
power-profiles-daemon
|
||||
pv
|
||||
qemu-guest-agent
|
||||
simple-scan
|
||||
skel-arkane
|
||||
sof-firmware
|
||||
sound-theme-elementary
|
||||
spice-vdagent
|
||||
sudo
|
||||
switchboard
|
||||
switchboard-plug-about
|
||||
switchboard-plug-applications
|
||||
|
@ -129,19 +95,10 @@ switchboard-plug-sound
|
|||
switchboard-plug-user-accounts
|
||||
switchboard-plug-wacom
|
||||
switcheroo-control
|
||||
terminus-font
|
||||
tpm2-tools
|
||||
tpm2-tss
|
||||
tpm2-tss-engine
|
||||
ttf-droid
|
||||
ttf-opensans
|
||||
ttf-roboto
|
||||
vulkan-intel
|
||||
vulkan-mesa-layers
|
||||
vulkan-nouveau
|
||||
vulkan-radeon
|
||||
webp-pixbuf-loader
|
||||
wget
|
||||
wingpanel
|
||||
wingpanel-indicator-a11y
|
||||
wingpanel-indicator-bluetooth
|
||||
|
@ -157,7 +114,3 @@ wireplumber
|
|||
xdg-user-dirs
|
||||
xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
zsh
|
||||
zsh-autosuggestions
|
||||
zsh-completions
|
||||
zsh-syntax-highlighting
|
||||
|
|
Loading…
Add table
Reference in a new issue