12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Make Armbian/XFCE Look Like Windows 10 [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,Armbian,Linux,Desktop Environment,Windows,Windows 10">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Make Armbian/XFCE Look Like Windows 10 [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 Windows 10 [XFCE Theming]</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Download the Windows 10 Dark theme <a href="https://github.com/B00merang-Project/Windows-10-Dark/releases/latest" target="_blank">Download</a></li>
- <li>Extract and install the downloaded archive with the following command:
- <div class="codeBlock"># install prerequisites<br />
- sudo apt install gtk2-engines-murrine unzip -y<br />
- # download Windows 10 icons<br />
- wget -O ~/Downloads/Win10-icons.zip https://github.com/B00merang-Artwork/Windows-10/archive/master.zip<br />
- # download desktop background<br />
- 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 />
- # make sure .themes and .icons exist<br />
- mkdir ~/.themes && mkdir ~/.icons<br />
- # extract the downloaded icons<br />
- unzip ~/Downloads/Win10-icons.zip -d ~/.icons<br />
- # create gtk icon cache<br />
- gtk-update-icon-cache ~/.icons/Windows-10-master/<br />
- # extract the downloaded theme<br />
- sudo tar -xf ~/Downloads/Windows-10-Dark*.tar.gz -C ~/.themes</div>
- </li>
- <li>Click the XFCE button > Settings > Desktop</li>
- <li>On the Background tab, select the Windows 10 background</li>
- <li>Click the XFCE button > Settings > Window Manager</li>
- <li>On the Style tab, select Windows-10-Dark</li>
- <li>Click the XFCE button > Settings > Appearance</li>
- <li>On the Style tab, select Windows-10-Dark</li>
- <li>On the Icons tab, select Windows-10-Dark</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 ubuntu > Select the Windows start icon > Click OK</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|