mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
12 lines
260 B
Bash
12 lines
260 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
|
|
|
|
sudo limine-update
|