mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
14 lines
308 B
Bash
14 lines
308 B
Bash
echo "Add thunderbolt support to boot image"
|
|
|
|
omarchy-pkg-add bolt
|
|
|
|
if [[ ! -f /etc/mkinitcpio.conf.d/thunderbolt_module.conf ]]; then
|
|
sudo tee /etc/mkinitcpio.conf.d/thunderbolt_module.conf <<EOF >/dev/null
|
|
MODULES+=(thunderbolt)
|
|
EOF
|
|
fi
|
|
|
|
if omarchy-cmd-present limine-update; then
|
|
sudo limine-update
|
|
fi
|