0529.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Make Armbian/XFCE Look Like MacOS [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,MacOS,Armbian,Linux,Desktop Environment">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Make Armbian/XFCE Look Like MacOS [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 MacOS [XFCE Theming]</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Download the Os Catalina theme <a href="https://www.xfce-look.org/p/1316421/" target="_blank">Download</a></li>
  26. <li>Download the Os Catalina icons <a href="https://www.xfce-look.org/p/1309810" target="_blank">Download</a></li>
  27. <li>Extract and install the downloaded archives with the following command:
  28. <div class="codeBlock"># install prerequisites<br />
  29. sudo apt install plank gtk2-engines-murrine gtk2-engines-pixbuf -y<br />
  30. # download desktop background<br />
  31. sudo wget -O /usr/share/backgrounds/xfce/macOS-Catalina-Light-mode.jpg https://cdn.osxdaily.com/wp-content/uploads/2019/06/macOS-Catalina-Light-mode.jpg<br />
  32. # make sure .icons and .themes exist<br />
  33. mkdir ~/.themes &amp;&amp; mkdir ~/.icons<br />
  34. # extract the downloaded icons<br />
  35. sudo tar -xf ~/Downloads/Os-Catalina-Icons*tar.xz -C ~/.icons<br />
  36. # extract the downloaded theme<br />
  37. sudo tar -xf ~/Downloads/Os-Catalina-XFCE*tar.xz -C ~/.themes<br />
  38. # move the plank theme<br />
  39. mkdir ~/.local/share/plank/themes/Os-Catalina -p<br />
  40. cp ~/.themes/Os-Catalina-XFCE-4.16/plank/dock.theme ~/.local/share/plank/themes/Os-Catalina/dock.theme</div>
  41. </li>
  42. <li>Click the XFCE button &gt; Settings &gt; Desktop</li>
  43. <li>On the Background tab, select the macOS Catalina background</li>
  44. <li>Click the XFCE button &gt; Settings &gt; Window Manager</li>
  45. <li>On the Style tab, select Os Catalina XFCE</li>
  46. <li>Click the XFCE button &gt; Settings &gt; Appearance</li>
  47. <li>On the Style tab, select Os Catalina XFCE</li>
  48. <li>On the Icons tab, select Os Catalina</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 logo &gt; Select the apple icon &gt; Click OK</li>
  56. <li>Press ALT+F2 &gt; Type plank</li>
  57. <li>Hold CTRL and right click on the Plank dock &gt; Preferences</li>
  58. <li>Select the Os-Catalina theme</li>
  59. <li>Click the XFCE button &gt; Settings &gt; Session and Startup</li>
  60. <li>On the Application Autostart tab, Click the +Add button</li>
  61. <li>Enter the name Plank and command plank &gt; Click OK</li>
  62. </ol>
  63. </div>
  64. </div>
  65. </body>
  66. </html>