0573.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>How to Install GRUB Themes</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Grub Bootloader,Theme,Theming,Customization,GRUB,Bootloader,Linux,Boot Loader,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="How to Install GRUB Themes">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>How to Install GRUB Themes</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Install a New Theme</h2>
  25. <ol>
  26. <li>Find and download a theme <a href="https://www.gnome-look.org/browse?cat=109&amp;page=1&amp;ord=latest" target="_blank">Browse</a></li>
  27. <li>Run the following commands in a terminal window:
  28. <div class="codeBlock"># change to ~/Downloads directory<br />
  29. cd ~/Downloads<br />
  30. # list the contents of the directory<br />
  31. ls<br />
  32. # extract the downloaded theme, replace the file name as needed<br />
  33. tar xzvf &#39;Grub2-theme CyberRe 1.0.0.tar.gz&#39;<br />
  34. # copy the extracted theme to /boot/grub/themes<br />
  35. # change the theme name as needed<br />
  36. sudo cp CyberRe\ 1.0.0/CyberRe /boot/grub/themes/ -r<br />
  37. # backup /etc/default/grub<br />
  38. sudo cp /etc/default/grub /etc/default/grub.bkup<br />
  39. # edit /etc/default/grub<br />
  40. sudo nano /etc/default/grub</div>
  41. </li>
  42. <li>At the bottom of the file, paste the following, updating the path to the theme.txt file
  43. <p>GRUB_THEME=/boot/grub/themes/CyberRe/theme.txt</p>
  44. </li>
  45. <li>Press CTRL+O, Enter, CTRL+X to write the changes</li>
  46. <li>Continue with the following commands in a terminal window:
  47. <div class="codeBlock"># update grub<br />
  48. sudo update-grub</div>
  49. </li>
  50. <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>
  51. <li>Reboot to see the new theme in action</li>
  52. </ol>
  53. <h2>Removing the Theme</h2>
  54. <ol>
  55. <li>Run the following commands in a terminal window:
  56. <div class="codeBlock"># change to the grub themes directory<br />
  57. cd /boot/grub/themes/<br />
  58. # list the contents of the directory<br />
  59. ls<br />
  60. # recursively remove the custom theme directory<br />
  61. # replace the theme folder name as needed<br />
  62. sudo rm CyberRe -r</div>
  63. </li>
  64. <li>NOTE: You can also remove the GRUB_THEME= line from /etc/default/grub, but it is not required</li>
  65. <li>Continue with the following commands:
  66. <div class="codeBlock"># update grub<br />
  67. sudo update-grub<br />
  68. # reboot<br />
  69. sudo reboot now</div>
  70. </li>
  71. </ol>
  72. </div>
  73. </div>
  74. </body>
  75. </html>