8 lines
210 B
Plaintext
Raw Normal View History

2020-07-08 21:11:08 +02:00
#!/bin/bash
2020-07-15 19:07:29 +02:00
echo "GRUB_BACKGROUND=\"/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png\"" >> /etc/default/grub
2020-07-08 21:11:08 +02:00
echo "GRUB_CMDLINE_LINUX_DEFAULT=\"quiet splash\"" >> /etc/default/grub
update-grub
2020-07-08 21:11:08 +02:00
exit 0