7 lines
233 B
Plaintext
7 lines
233 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Remove the grub symlink for the background
|
||
|
rm -f /etc/alternatives/desktop-grub
|
||
|
# Then recreate it with the Pep Background
|
||
|
ln -s /usr/share/desktop-base/active-theme/grub/pep-grub-16x9.png /etc/alternatives/desktop-grub
|