mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
275 B
Bash
10 lines
275 B
Bash
echo "Enable FRED on Intel Panther Lake systems"
|
|
|
|
DEFAULT_LIMINE="/etc/default/limine"
|
|
|
|
if omarchy-hw-intel-ptl && [[ -f $DEFAULT_LIMINE ]] && ! grep -q 'fred=on' "$DEFAULT_LIMINE"; then
|
|
source "$OMARCHY_PATH/install/config/hardware/intel/fred.sh"
|
|
|
|
sudo limine-update
|
|
fi
|