Compare commits

...

4 Commits

Author SHA1 Message Date
d45c3128ba Removed godot from base image to opt for flatpak
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (pull_request) Successful in 9m57s
2025-09-14 13:25:44 -04:00
ab8361b64a Added back dkms for dkms-xpadneo 2025-09-14 13:25:27 -04:00
dc02602e08 Removed swww to use custom quickshell 2025-09-13 22:30:39 -04:00
b3fec6c6d0 Separated installdkmsmodules.sh into separate scripts and removed razer package 2025-09-13 22:20:47 -04:00
5 changed files with 17 additions and 18 deletions

View File

@@ -7,21 +7,10 @@ echo "INFO: grab kernel module"
KERNEL_VER=$(ls /lib/modules | head -n 1) KERNEL_VER=$(ls /lib/modules | head -n 1)
echo $KERNEL_VER echo $KERNEL_VER
echo "INFO: list all modules"
ls /usr/src
echo "INFO: grab xpad modules"
XPAD_MODULE_VER=$(ls /usr/src | grep xpadneo | sed 's/-/\//')
echo $XPAD_MODULE_VER
echo "INFO: grab open razer modules" echo "INFO: grab open razer modules"
RAZER_MODULE_VER=$(ls /usr/src | grep razer | sed -E 's/(.*)-/\1\//') RAZER_MODULE_VER=$(ls /usr/src | grep razer | sed -E 's/(.*)-/\1\//')
echo $RAZER_MODULE_VER echo $RAZER_MODULE_VER
echo "INFO: build and install xpadneo"
sudo dkms build -m $XPAD_MODULE_VER -k $KERNEL_VER
sudo dkms install -m $XPAD_MODULE_VER -k $KERNEL_VER
echo "INFO: build and install openrazer" echo "INFO: build and install openrazer"
sudo dkms build -m $RAZER_MODULE_VER -k $KERNEL_VER sudo dkms build -m $RAZER_MODULE_VER -k $KERNEL_VER
sudo dkms install -m $RAZER_MODULE_VER -k $KERNEL_VER sudo dkms install -m $RAZER_MODULE_VER -k $KERNEL_VER

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
echo "INFO: grab kernel module"
KERNEL_VER=$(ls /lib/modules | head -n 1)
echo $KERNEL_VER
echo "INFO: grab xpad modules"
XPAD_MODULE_VER=$(ls /usr/src | grep xpadneo | sed 's/-/\//')
echo $XPAD_MODULE_VER
echo "INFO: build and install xpadneo"
sudo dkms build -m $XPAD_MODULE_VER -k $KERNEL_VER
sudo dkms install -m $XPAD_MODULE_VER -k $KERNEL_VER

View File

@@ -60,9 +60,6 @@ modules:
- gamescope - gamescope
# for performance view # for performance view
- mangohud - mangohud
# godot
- godot
remove: remove:
packages: packages:

View File

@@ -3,15 +3,13 @@ modules:
repos: repos:
files: files:
- https://negativo17.org/repos/fedora-steam.repo - https://negativo17.org/repos/fedora-steam.repo
- https://openrazer.github.io/hardware:razer.repo
install: install:
packages: packages:
- dkms - dkms
- openrazer-meta
- repo: fedora-steam - repo: fedora-steam
packages: packages:
- dkms-xpadneo - dkms-xpadneo
- type: script - type: script
scripts: scripts:
- installdkmsmodules.sh - installxpadneomodule.sh

View File

@@ -13,7 +13,6 @@ modules:
- hyprland-qt-support - hyprland-qt-support
- hyprland-qtutils - hyprland-qtutils
- xdg-desktop-portal-hyprland - xdg-desktop-portal-hyprland
- swww
- matugen - matugen
# quickshell # quickshell