mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
8 lines
289 B
Bash
8 lines
289 B
Bash
echo "Ensure Linux is running fully preemptible to avoid video/audio issues"
|
|
|
|
if ! grep -q "preempt=full" /etc/default/limine; then
|
|
sudo sed -i 's/^\(KERNEL_CMDLINE\[default\]+=\"[^"]*\)"/\1 preempt=full"/' /etc/default/limine
|
|
sudo limine-update
|
|
omarchy-state set reboot-required
|
|
fi
|