12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Make Armbian/XFCE Look Like MacOS [XFCE Theming]</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="i12bretro,How To,Tutorial,XFCE,Theme,Theming,MacOS,Armbian,Linux,Desktop Environment">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Make Armbian/XFCE Look Like MacOS [XFCE Theming]">
- <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>Make Armbian/XFCE Look Like MacOS [XFCE Theming]</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Download the Os Catalina theme <a href="https://www.xfce-look.org/p/1316421/" target="_blank">Download</a></li>
- <li>Download the Os Catalina icons <a href="https://www.xfce-look.org/p/1309810" target="_blank">Download</a></li>
- <li>Extract and install the downloaded archives with the following command:
- <div class="codeBlock"># install prerequisites<br />
- sudo apt install plank gtk2-engines-murrine gtk2-engines-pixbuf -y<br />
- # download desktop background<br />
- 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 />
- # make sure .icons and .themes exist<br />
- mkdir ~/.themes && mkdir ~/.icons<br />
- # extract the downloaded icons<br />
- sudo tar -xf ~/Downloads/Os-Catalina-Icons*tar.xz -C ~/.icons<br />
- # extract the downloaded theme<br />
- sudo tar -xf ~/Downloads/Os-Catalina-XFCE*tar.xz -C ~/.themes<br />
- # move the plank theme<br />
- mkdir ~/.local/share/plank/themes/Os-Catalina -p<br />
- cp ~/.themes/Os-Catalina-XFCE-4.16/plank/dock.theme ~/.local/share/plank/themes/Os-Catalina/dock.theme</div>
- </li>
- <li>Click the XFCE button > Settings > Desktop</li>
- <li>On the Background tab, select the macOS Catalina background</li>
- <li>Click the XFCE button > Settings > Window Manager</li>
- <li>On the Style tab, select Os Catalina XFCE</li>
- <li>Click the XFCE button > Settings > Appearance</li>
- <li>On the Style tab, select Os Catalina XFCE</li>
- <li>On the Icons tab, select Os Catalina</li>
- <li>Click the XFCE button > Settings > Panel</li>
- <li>On the Display tab, slide the Row size to taste</li>
- <li>Select the Items tab</li>
- <li>Select the Whisker menu > Click the Edit icon</li>
- <li>Click the Panel Button tab > Click the Icon to edit it</li>
- <li>Select All Icons from the drop down</li>
- <li>Search logo > Select the apple icon > Click OK</li>
- <li>Press ALT+F2 > Type plank</li>
- <li>Hold CTRL and right click on the Plank dock > Preferences</li>
- <li>Select the Os-Catalina theme</li>
- <li>Click the XFCE button > Settings > Session and Startup</li>
- <li>On the Application Autostart tab, Click the +Add button</li>
- <li>Enter the name Plank and command plank > Click OK</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|