12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>How to Install GRUB Themes</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Grub Bootloader,Theme,Theming,Customization,GRUB,Bootloader,Linux,Boot Loader,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="How to Install GRUB Themes">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>How to Install GRUB Themes</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Install a New Theme</h2>
- <ol>
- <li>Find and download a theme <a href="https://www.gnome-look.org/browse?cat=109&page=1&ord=latest" target="_blank">Browse</a></li>
- <li>Run the following commands in a terminal window:
- <div class="codeBlock"># change to ~/Downloads directory<br />
- cd ~/Downloads<br />
- # list the contents of the directory<br />
- ls<br />
- # extract the downloaded theme, replace the file name as needed<br />
- tar xzvf 'Grub2-theme CyberRe 1.0.0.tar.gz'<br />
- # copy the extracted theme to /boot/grub/themes<br />
- # change the theme name as needed<br />
- sudo cp CyberRe\ 1.0.0/CyberRe /boot/grub/themes/ -r<br />
- # backup /etc/default/grub<br />
- sudo cp /etc/default/grub /etc/default/grub.bkup<br />
- # edit /etc/default/grub<br />
- sudo nano /etc/default/grub</div>
- </li>
- <li>At the bottom of the file, paste the following, updating the path to the theme.txt file
- <p>GRUB_THEME=/boot/grub/themes/CyberRe/theme.txt</p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes</li>
- <li>Continue with the following commands in a terminal window:
- <div class="codeBlock"># update grub<br />
- sudo update-grub</div>
- </li>
- <li>If everything is setup correctly, a line that reads Found theme: /boot/grub/themes/CyberRe/theme.txt should show in the update-grub output</li>
- <li>Reboot to see the new theme in action</li>
- </ol>
- <h2>Removing the Theme</h2>
- <ol>
- <li>Run the following commands in a terminal window:
- <div class="codeBlock"># change to the grub themes directory<br />
- cd /boot/grub/themes/<br />
- # list the contents of the directory<br />
- ls<br />
- # recursively remove the custom theme directory<br />
- # replace the theme folder name as needed<br />
- sudo rm CyberRe -r</div>
- </li>
- <li>NOTE: You can also remove the GRUB_THEME= line from /etc/default/grub, but it is not required</li>
- <li>Continue with the following commands:
- <div class="codeBlock"># update grub<br />
- sudo update-grub<br />
- # reboot<br />
- sudo reboot now</div>
- </li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|