update
This commit is contained in:
parent
98744a8b36
commit
19125b85b9
1 changed files with 7 additions and 9 deletions
16
install.sh
16
install.sh
|
@ -120,20 +120,18 @@ install() {
|
||||||
cp -an /etc/default/grub /etc/default/grub.bak
|
cp -an /etc/default/grub /etc/default/grub.bak
|
||||||
|
|
||||||
grep "GRUB_THEME=" /etc/default/grub 2>&1 >/dev/null && sed -i '/GRUB_THEME=/d' /etc/default/grub
|
grep "GRUB_THEME=" /etc/default/grub 2>&1 >/dev/null && sed -i '/GRUB_THEME=/d' /etc/default/grub
|
||||||
|
grep "GRUB_GFXMODE=" /etc/default/grub 2>&1 >/dev/null && sed -i '/GRUB_GFXMODE=/d' /etc/default/grub
|
||||||
if [[ ${screen} != '1080p' ]]; then
|
|
||||||
grep "GRUB_GFXMODE=" /etc/default/grub 2>&1 >/dev/null && sed -i '/GRUB_GFXMODE=/d' /etc/default/grub
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Edit grub config
|
# Edit grub config
|
||||||
echo "GRUB_THEME=\"${THEME_DIR}/${name}/theme.txt\"" >> /etc/default/grub
|
echo "GRUB_THEME=\"${THEME_DIR}/${name}/theme.txt\"" >> /etc/default/grub
|
||||||
|
echo "GRUB_GFXMODE=auto" >> /etc/default/grub
|
||||||
|
|
||||||
# Make sure set the right resolution for grub
|
# Make sure set the right resolution for grub
|
||||||
if [[ ${screen} == '4k' ]]; then
|
# if [[ ${screen} == '4k' ]]; then
|
||||||
echo "GRUB_GFXMODE=3840x2160x32" >> /etc/default/grub
|
# echo "GRUB_GFXMODE=3840x2160x32" >> /etc/default/grub
|
||||||
elif [[ ${screen} == '2k' ]]; then
|
# elif [[ ${screen} == '2k' ]]; then
|
||||||
echo "GRUB_GFXMODE=2560x1440x32" >> /etc/default/grub
|
# echo "GRUB_GFXMODE=2560x1440x32" >> /etc/default/grub
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
# Update grub config
|
# Update grub config
|
||||||
prompt -i "\n Updating grub config..."
|
prompt -i "\n Updating grub config..."
|
||||||
|
|
Loading…
Reference in a new issue