Thank you for your quick reply.
At the moment the theme.txt looks like this
title-text: ""
title-font: "DejaVu Sans Regular 48"
message-font: "Terminus 16"
message-color: "#7f8c8d"
message-bg-color: "#4d4d4d"
desktop-color: "#000000"
desktop-image: "background.png"
terminal-font: "Terminus 14"
terminal-left: "0"
terminal-top: "0"
terminal-width: "100%"
terminal-height: "100%"
terminal-border: "0"
+ label {
top = 20%
height = 35
left = 0%
width = 100%
#text = "Welcome to Manjaro"
align = "center"
font = "DejaVu Sans Regular 48"
color = "#ffffff"
}
+ boot_menu {
left = 15%
#width = 250
width = 70%
#top = 50%-125
#height = 400
top = 30%
height = 44%
item_height = 30
item_padding = 5
icon_width = 32
icon_height = 32
item_icon_space = 20
item_spacing = 5
item_font = "Terminus 16"
item_color = "#cccccc"
#item_color = "#FFA2A2"
selected_item_font = "Terminus 16"
selected_item_color = "#1ABB9B"
selected_item_pixmap_style = "select_*.png"
menu_pixmap_style = "menu_*.png"
}
#+ progress_bar {
# id = "__timeout__"
# left = 0
# top = 100%-32
# width = 100%
# height = 32
# show_text = false
# bar_style = "progress_bar_*.png"
# highlight_style = "progress_bar_hl_*.png"
#}
+ progress_bar {
id = "__timeout__"
left = 50%-125
top = 70%
width = 250
height = 20
show_text = true
font = "Terminus 14"
text_color = "#ffffff"
align = "center"
text = "@TIMEOUT_NOTIFICATION_MIDDLE@"
bar_style = "progress_bar2_*.png"
}
+ vbox {
left = 50%-125
top = 80%
width = 250
+ label { width = 250 height = 20 align = "center" color = "#ffffff" font = "Terminus 16" text = "[↵] Boot selected OS" }
+ label { width = 250 height = 20 align = "center" color = "#ffffff" font = "Terminus 16" text = "[↑ and ↓ Key] Navigation" }
+ label { width = 250 height = 20 align = "center" color = "#ffffff" font = "Terminus 16" text = "[E] Edit Selection" }
+ label { width = 250 height = 20 align = "center" color = "#ffffff" font = "Terminus 16" text = "[C] GRUB Commandline" }
}
I'll try the steps you mentioned and report back.
Your first step give me an error
mv: der Aufruf von stat für '/etc/default/grub' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
this tanslates to: mv: the call of stats for '/etc/default/grub' is not possible: data or path not found
OK nevermind, I was dumb. It's currently installing the grub-vanilla.
So I followed your steps and there wasn't a single error in the process.
The bad thing is: The problem stayed exactly the same.
My grub now looks like this:
# GRUB boot loader configuration
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Manjaro"
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y
# Set to 'countdown' or 'hidden' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=menu
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
GRUB_TERMINAL_OUTPUT=gfxterm
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=1024x768x32
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=1024x768x32
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
GRUB_COLOR_NORMAL="light-gray/black"
GRUB_COLOR_HIGHLIGHT="green/black"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/usr/share/grub/background.png"
GRUB_THEME="/usr/share/grub/themes/manjaro/theme.txt"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
# Uncomment to make GRUB remember the last selection. This requires to
# set 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT="true"