Files
zira-etc/grub.d/41_custom
2021-05-24 22:18:33 +03:00

10 lines
216 B
Bash
Executable File

#!/bin/sh
cat <<EOF
if [ -f \${config_directory}/custom.cfg ]; then
source \${config_directory}/custom.cfg
elif [ -z "\${config_directory}" -a -f \$prefix/custom.cfg ]; then
source \$prefix/custom.cfg;
fi
EOF