0530.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Make Armbian/XFCE Look Like Windows 10 [XFCE Theming]</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="i12bretro,How To,Tutorial,XFCE,Theme,Theming,Armbian,Linux,Desktop Environment,Windows,Windows 10">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Make Armbian/XFCE Look Like Windows 10 [XFCE Theming]">
  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>Make Armbian/XFCE Look Like Windows 10 [XFCE Theming]</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Download the Windows 10 Dark theme <a href="https://github.com/B00merang-Project/Windows-10-Dark/releases/latest" target="_blank">Download</a></li>
  26. <li>Extract and install the downloaded archive with the following command:
  27. <div class="codeBlock"># install prerequisites<br />
  28. sudo apt install gtk2-engines-murrine unzip -y<br />
  29. # download Windows 10 icons<br />
  30. wget -O ~/Downloads/Win10-icons.zip https://github.com/B00merang-Artwork/Windows-10/archive/master.zip<br />
  31. # download desktop background<br />
  32. sudo wget -O /usr/share/backgrounds/xfce/Windows-10.jpg https://1.bp.blogspot.com/-pEu0ToTAMyk/XWnlO2-h6nI/AAAAAAAAYb0/U7uz1_YHqls7nOf4N0s9rP96g7jaqlWZACLcBGAs/s2560/windows_10_4k_8k_2-2560x1440.jpg<br />
  33. # make sure .themes and .icons exist<br />
  34. mkdir ~/.themes &amp;&amp; mkdir ~/.icons<br />
  35. # extract the downloaded icons<br />
  36. unzip ~/Downloads/Win10-icons.zip -d ~/.icons<br />
  37. # create gtk icon cache<br />
  38. gtk-update-icon-cache ~/.icons/Windows-10-master/<br />
  39. # extract the downloaded theme<br />
  40. sudo tar -xf ~/Downloads/Windows-10-Dark*.tar.gz -C ~/.themes</div>
  41. </li>
  42. <li>Click the XFCE button &gt; Settings &gt; Desktop</li>
  43. <li>On the Background tab, select the Windows 10 background</li>
  44. <li>Click the XFCE button &gt; Settings &gt; Window Manager</li>
  45. <li>On the Style tab, select Windows-10-Dark</li>
  46. <li>Click the XFCE button &gt; Settings &gt; Appearance</li>
  47. <li>On the Style tab, select Windows-10-Dark</li>
  48. <li>On the Icons tab, select Windows-10-Dark</li>
  49. <li>Click the XFCE button &gt; Settings &gt; Panel</li>
  50. <li>On the Display tab, slide the Row size to taste</li>
  51. <li>Select the Items tab</li>
  52. <li>Select the Whisker menu &gt; Click the Edit icon</li>
  53. <li>Click the Panel Button tab &gt; Click the Icon to edit it</li>
  54. <li>Select All Icons from the drop down</li>
  55. <li>Search ubuntu &gt; Select the Windows start icon &gt; Click OK</li>
  56. </ol>
  57. </div>
  58. </div>
  59. </body>
  60. </html>