├── .gitignore
├── src
├── links
│ ├── software
│ │ ├── IcoFX - Icon editor.url
│ │ ├── XnView - Image manager.url
│ │ ├── Resource Hacker - Skin editor.url
│ │ └── Ico Convert - Online icon conversion.url
│ └── skinning
│ │ ├── Start Menu Skinning.url
│ │ ├── How to make a skin for the Start menu.url
│ │ └── Customize Start Menu font, font size and font-text color-.url
├── skin
│ ├── search.psd
│ ├── bmp
│ │ ├── search.bmp
│ │ └── menu_arrows.bmp
│ └── menu_arrows.psd
├── icons
│ ├── png
│ │ ├── dot.png
│ │ ├── help.png
│ │ ├── music.png
│ │ ├── power.png
│ │ ├── run.png
│ │ ├── desktop.png
│ │ ├── folder.png
│ │ ├── network.png
│ │ ├── search.png
│ │ ├── this-pc.png
│ │ ├── videos.png
│ │ ├── all-apps.png
│ │ ├── bookmark.png
│ │ ├── documents.png
│ │ ├── downloads.png
│ │ ├── favorites.png
│ │ ├── pictures.png
│ │ ├── printers.png
│ │ ├── security.png
│ │ ├── settings.png
│ │ ├── user-files.png
│ │ ├── all-programs.png
│ │ ├── recent-items.png
│ │ └── control-panel.png
│ ├── windows 10 icons.psd
│ └── xnview convert icons.xbs
└── Shortcut to Classic Shell.lnk
├── dist
├── Windows 10.skin
├── Windows 10 Icons
│ ├── dot.ico
│ ├── help.ico
│ ├── run.ico
│ ├── desktop.ico
│ ├── folder.ico
│ ├── music.ico
│ ├── network.ico
│ ├── power.ico
│ ├── search.ico
│ ├── this-pc.ico
│ ├── videos.ico
│ ├── all-apps.ico
│ ├── bookmark.ico
│ ├── documents.ico
│ ├── downloads.ico
│ ├── favorites.ico
│ ├── pictures.ico
│ ├── printers.ico
│ ├── security.ico
│ ├── settings.ico
│ ├── all-programs.ico
│ ├── recent-items.ico
│ ├── user-files.ico
│ ├── control-panel.ico
│ └── index.html
├── Shortcut to Classic Shell AppData.lnk
└── Windows 10 Settings.xml
├── LICENSE
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | desktop.ini
2 |
--------------------------------------------------------------------------------
/src/links/software/IcoFX - Icon editor.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://icofx.ro/
3 |
--------------------------------------------------------------------------------
/src/links/software/XnView - Image manager.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://www.xnview.com/en/
3 |
--------------------------------------------------------------------------------
/dist/Windows 10.skin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10.skin
--------------------------------------------------------------------------------
/src/skin/search.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/skin/search.psd
--------------------------------------------------------------------------------
/src/icons/png/dot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/dot.png
--------------------------------------------------------------------------------
/src/icons/png/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/help.png
--------------------------------------------------------------------------------
/src/icons/png/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/music.png
--------------------------------------------------------------------------------
/src/icons/png/power.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/power.png
--------------------------------------------------------------------------------
/src/icons/png/run.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/run.png
--------------------------------------------------------------------------------
/src/skin/bmp/search.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/skin/bmp/search.bmp
--------------------------------------------------------------------------------
/src/icons/png/desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/desktop.png
--------------------------------------------------------------------------------
/src/icons/png/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/folder.png
--------------------------------------------------------------------------------
/src/icons/png/network.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/network.png
--------------------------------------------------------------------------------
/src/icons/png/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/search.png
--------------------------------------------------------------------------------
/src/icons/png/this-pc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/this-pc.png
--------------------------------------------------------------------------------
/src/icons/png/videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/videos.png
--------------------------------------------------------------------------------
/src/links/software/Resource Hacker - Skin editor.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://angusj.com/resourcehacker/
3 |
--------------------------------------------------------------------------------
/src/skin/menu_arrows.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/skin/menu_arrows.psd
--------------------------------------------------------------------------------
/src/icons/png/all-apps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/all-apps.png
--------------------------------------------------------------------------------
/src/icons/png/bookmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/bookmark.png
--------------------------------------------------------------------------------
/src/icons/png/documents.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/documents.png
--------------------------------------------------------------------------------
/src/icons/png/downloads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/downloads.png
--------------------------------------------------------------------------------
/src/icons/png/favorites.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/favorites.png
--------------------------------------------------------------------------------
/src/icons/png/pictures.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/pictures.png
--------------------------------------------------------------------------------
/src/icons/png/printers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/printers.png
--------------------------------------------------------------------------------
/src/icons/png/security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/security.png
--------------------------------------------------------------------------------
/src/icons/png/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/settings.png
--------------------------------------------------------------------------------
/src/icons/png/user-files.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/user-files.png
--------------------------------------------------------------------------------
/src/skin/bmp/menu_arrows.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/skin/bmp/menu_arrows.bmp
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/dot.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/dot.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/help.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/help.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/run.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/run.ico
--------------------------------------------------------------------------------
/src/icons/png/all-programs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/all-programs.png
--------------------------------------------------------------------------------
/src/icons/png/recent-items.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/recent-items.png
--------------------------------------------------------------------------------
/src/icons/windows 10 icons.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/windows 10 icons.psd
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/desktop.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/desktop.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/folder.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/folder.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/music.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/music.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/network.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/network.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/power.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/power.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/search.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/search.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/this-pc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/this-pc.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/videos.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/videos.ico
--------------------------------------------------------------------------------
/src/Shortcut to Classic Shell.lnk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/Shortcut to Classic Shell.lnk
--------------------------------------------------------------------------------
/src/icons/png/control-panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/src/icons/png/control-panel.png
--------------------------------------------------------------------------------
/src/links/skinning/Start Menu Skinning.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://www.classicshell.net/tutorials/skintutorial.html
3 |
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/all-apps.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/all-apps.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/bookmark.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/bookmark.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/documents.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/documents.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/downloads.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/downloads.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/favorites.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/favorites.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/pictures.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/pictures.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/printers.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/printers.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/security.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/security.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/settings.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/settings.ico
--------------------------------------------------------------------------------
/src/icons/xnview convert icons.xbs:
--------------------------------------------------------------------------------
1 | settings( 0 0 0 0 0 0 0 )
2 | output_path( ../../../dist/Windows 10 Icons/ )
3 | output( ico )
4 |
--------------------------------------------------------------------------------
/src/links/software/Ico Convert - Online icon conversion.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://icoconvert.com/image_to_icon_converter/
3 |
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/all-programs.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/all-programs.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/recent-items.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/recent-items.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/user-files.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/user-files.ico
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/control-panel.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Windows 10 Icons/control-panel.ico
--------------------------------------------------------------------------------
/src/links/skinning/How to make a skin for the Start menu.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://www.classicshell.net/forum/viewtopic.php?f=17&t=9
3 |
--------------------------------------------------------------------------------
/dist/Shortcut to Classic Shell AppData.lnk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davestewart/classic-shell-win10/HEAD/dist/Shortcut to Classic Shell AppData.lnk
--------------------------------------------------------------------------------
/src/links/skinning/Customize Start Menu font, font size and font-text color-.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=http://www.classicshell.net/forum/viewtopic.php?f=7&t=2051#p10355
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Dave Stewart
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/dist/Windows 10 Icons/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Classic Shell Windows 10 Skin - Icons
6 |
71 |
72 |
73 |
74 | Classic Shell
75 | Windows 10 Skin - Icons
76 |
77 |
78 |
79 |
94 |
95 |
105 |
106 |
107 |
Lists
108 |
109 |
All Programs
110 |
All Apps
111 |
Recent Items
112 |
113 |
114 |
115 |
116 |
Hardware
117 |
118 |
Workstation
119 |
Network
120 |
Printers
121 |
122 |
123 |
124 |
125 |
Settings
126 |
127 |
Settings
128 |
Control Panel
129 |
130 |
131 |
132 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Classic Shell Windows 10 Skin
2 |
3 | A Windows 10 skin for Classic Shell's Start Menu replacement, with yummy Windows 10-style icons :)
4 |
5 | 
6 |
7 | ## Overview
8 |
9 | If you're not familiar with Classic Shell, it's a free Start Menu replacement that retains the functionality and useability of previous Windows versions, specifically Pinned Items and a hierarchical All Programs menu.
10 |
11 | It can downloaded and installed from:
12 |
13 | - [http://www.classicshell.net](http://www.classicshell.net)
14 |
15 | The Windows 10 Skin customises Classic Shell to make it look as much like Windows 10 as possible, and comes with the following hand-crafted icons:
16 |
17 | 
18 |
19 | Note that [more icons](https://github.com/davestewart/classic-shell-win10/issues/2) will be released with the 1.1 update.
20 |
21 |
22 | ## Download and installation
23 |
24 | Download the package contents using the "Download ZIP" button on the right.
25 |
26 | Unzip and navigate to the "dist" folder, then...
27 |
28 | 1. Copy the "Windows 10.skin" file to your Classic Shell installation's "Skins" folder
29 | 2. Copy the "Windows 10 Icons" folder to "%USERPROFILE%\AppData\Local\ClassicShell\" (use the supplied shortcut to get there)
30 |
31 | ## Setup
32 |
33 | To style the Start Menu and show the icons, you'll need to load the supplied settings file. **This will completely replace your existing Classic Shell settings**, so make sure to backup your existing configuration or take a screenshot before loading the new settings.
34 |
35 | 1. At the bottom of the panel, click "Backup" then "Load from XML File..."
36 | 2. Choose the "Windows 10 Settings.xml" file
37 | 3. Click "OK" in the main dialog to commit the changes
38 |
39 | Your start menu should now be updated with the Windows 10 look and feel, but you will need to exit and restart Classic Shell in order for the icon sizes to update:
40 |
41 | 1. Right click the Start Button
42 | 2. Choose "Exit"
43 | 3. Re-open Classic Shell
44 |
45 |
46 | ## Customising
47 |
48 | ### General
49 |
50 | If you loaded the supplied settings file, you should see a useful default setup, with folders and icons, etc.
51 |
52 | You can edit most of the Classic Shell settings as you like, with the exception of:
53 |
54 | - Start Menu Style > Windows 7 style (settings don't exist for this style)
55 | - Menu Look > Large icon size (large icon size is fixed at 24)
56 |
57 | ### Icons
58 |
59 | To customise items you've added to the Start Menu yourself, you'll need to edit their properties and set a new icon.
60 |
61 | To do this:
62 |
63 | 1. Open the Classic Shell "Settings" dialog, and switch to the "Customize Start Menu" tab
64 | 2. In the left hand column, double-click the item you want to edit, to open the "Edit Menu Item" dialog
65 | 3. In the "Icon" field, click the "..." button to open the "Select Icon" dialog
66 | 4. In the "File" field, click the "..." button to open the "Select Source File" dialog
67 | 5. Choose the icon you want to use and click "Open"
68 | 6. Confirm all dialogs to exit
69 |
70 |
71 | ## Troubleshooting
72 |
73 | #### The menu background is blue (or some other color)
74 |
75 | Classic Start Menu takes its color from the current Windows desktop bacground color, so you'll need to change this to change the menu color.
76 |
77 | Right click the Desktop and go Personalize > Colors > Choose a color, then turn off "Automatically pick an accent color from my background" and select something sensible, such as a dark grey.
78 |
79 | #### The icons aren't showing
80 |
81 | Are you sure you copied the icons folder to your AppData/Classic Shell folder? The full path to an icon file should look like this:
82 |
83 | %USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\settings.ico
84 |
85 | Make sure you've copied the whole "Windows 10 Icons" folder and not just the icons.
86 |
87 | #### The icons look pixelated or wrongly-sized
88 |
89 | If you've only just loaded the settings XML file, you will need to exit and restart Classic Shell for the new icon size to take effect.
90 |
91 | #### The icons don't look good on my hi-res screen
92 |
93 | Hi-res icons are [on the list](https://github.com/davestewart/classic-shell-win10/issues/3) of things to do.
94 |
95 | #### Your previous menu settings have gone
96 |
97 | Yes, if you loaded the settings file, this will have overwritten your existing settings.
98 |
99 | #### Some of the menu items are showing <No Text> and don't seem to link anywhere
100 |
101 | The location that the menu item linked to doesn't exist. This may be because you've moved the folder somewhere else, or it just doesn't exist on your system.
102 |
103 | You can remove, or edit, the menu item by:
104 |
105 | 1. Navigating to Classic Shell's "Settings" dialog
106 | 2. Clicking the "Customize Start Menu" tab (this will only show if the "Show all settings" checkbox is checked)
107 | 3. In the "Current menu items" list, locating the item you want to edit, and double-clicking it
108 | 4. Editing the "Link" field to point towards a new folder location
109 |
--------------------------------------------------------------------------------
/dist/Windows 10 Settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | Items=COLUMN_PADDING,ProgramsMenu,AppsMenu,SearchBoxItem,COLUMN_BREAK,UserFilesItem,CustomItem,UserDocumentsItem,UserPicturesItem,CustomItem2,RecentDocumentsItem,FavoritesItem,SEPARATOR,ComputerItem,SEPARATOR,PCSettingsItem,ControlPanelItem,SecurityItem,NetworkItem,PrintersItem,SEPARATOR,SearchMenu,COLUMN_PADDING,HelpItem,SEPARATOR,RunItem,ShutdownBoxItem
58 | ProgramsMenu.Command=programs
59 | ProgramsMenu.Label=$Menu.Programs
60 | ProgramsMenu.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\all-programs.ico
61 | AppsMenu.Command=apps
62 | AppsMenu.Label=$Menu.Apps
63 | AppsMenu.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\all-apps.ico
64 | SearchBoxItem.Command=search_box
65 | SearchBoxItem.Label=$Menu.SearchBox
66 | SearchBoxItem.Icon=none
67 | SearchBoxItem.Settings=OPEN_UP|TRACK_RECENT
68 | UserFilesItem.Command=user_files
69 | UserFilesItem.Tip=$Menu.UserFilesTip
70 | UserFilesItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\user-files.ico
71 | CustomItem.Link=Desktop | %USERPROFILE%\Desktop
72 | CustomItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\desktop.ico
73 | UserDocumentsItem.Command=user_documents
74 | UserDocumentsItem.Tip=$Menu.UserDocumentsTip
75 | UserDocumentsItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\documents.ico
76 | UserPicturesItem.Command=user_pictures
77 | UserPicturesItem.Tip=$Menu.UserPicturesTip
78 | UserPicturesItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\pictures.ico
79 | CustomItem2.Link=Videos | %USERPROFILE%\Videos
80 | CustomItem2.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\videos.ico
81 | RecentDocumentsItem.Command=recent_documents
82 | RecentDocumentsItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\recent-items.ico
83 | RecentDocumentsItem.Settings=ITEMS_FIRST
84 | FavoritesItem.Command=favorites
85 | FavoritesItem.Label=$Menu.Favorites
86 | FavoritesItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\favorites.ico
87 | ComputerItem.Command=computer
88 | ComputerItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\this-pc.ico
89 | PCSettingsItem.Command=pc_settings
90 | PCSettingsItem.Label=Settings
91 | PCSettingsItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\settings.ico
92 | PCSettingsItem.Settings=TRACK_RECENT
93 | ControlPanelItem.Command=control_panel
94 | ControlPanelItem.Label=$Menu.ControlPanel
95 | ControlPanelItem.Tip=$Menu.ControlPanelTip
96 | ControlPanelItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\control-panel.ico
97 | ControlPanelItem.Settings=TRACK_RECENT
98 | SecurityItem.Command=windows_security
99 | SecurityItem.Label=$Menu.Security
100 | SecurityItem.Tip=$Menu.SecurityTip
101 | SecurityItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\security.ico
102 | NetworkItem.Command=network_connections
103 | NetworkItem.Label=$Menu.Network
104 | NetworkItem.Tip=$Menu.NetworkTip
105 | NetworkItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\network.ico
106 | PrintersItem.Command=printers
107 | PrintersItem.Label=$Menu.Printers
108 | PrintersItem.Tip=$Menu.PrintersTip
109 | PrintersItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\printers.ico
110 | SearchMenu.Items=SearchFilesItem,SearchPrinterItem,SearchComputersItem,SearchPeopleItem
111 | SearchMenu.Command=search
112 | SearchMenu.Label=$Menu.Search
113 | SearchMenu.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\search.ico
114 | SearchFilesItem.Command=search_files
115 | SearchFilesItem.Label=$Menu.SearchFiles
116 | SearchFilesItem.Tip=$Menu.SearchFilesTip
117 | SearchFilesItem.Icon=shell32.dll,134
118 | SearchPrinterItem.Command=search_printer
119 | SearchPrinterItem.Label=$Menu.SearchPrinter
120 | SearchPrinterItem.Tip=$Menu.SearchPrintersTip
121 | SearchPrinterItem.Icon=shell32.dll,1006
122 | SearchComputersItem.Command=search_computers
123 | SearchComputersItem.Label=$Menu.SearchComputers
124 | SearchComputersItem.Tip=$Menu.SearchComputersTip
125 | SearchComputersItem.Icon=shell32.dll,135
126 | SearchPeopleItem.Command=search_people
127 | SearchPeopleItem.Label=$Menu.SearchPeople
128 | SearchPeopleItem.Icon=shell32.dll,269
129 | HelpItem.Command=help
130 | HelpItem.Label=$Menu.Help
131 | HelpItem.Tip=$Menu.HelpTip
132 | HelpItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\help.ico
133 | RunItem.Command=run
134 | RunItem.Label=$Menu.Run
135 | RunItem.Tip=$Menu.RunTip
136 | RunItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\run.ico
137 | ShutdownBoxItem.Items=SwitchUserItem,LogOffItem,LockItem,SEPARATOR,SleepItem,HibernateItem,SEPARATOR,RestartItem,UndockItem,DisconnectItem,ShutdownItem
138 | ShutdownBoxItem.Command=shutdown_box
139 | ShutdownBoxItem.Label=$Menu.ShutdownBox
140 | ShutdownBoxItem.Icon=%USERPROFILE%\AppData\Local\ClassicShell\Windows 10 Icons\power.ico
141 | ShutdownBoxItem.Settings=SPLIT
142 | SwitchUserItem.Command=switch_user
143 | SwitchUserItem.Label=$Menu.SwitchUser
144 | SwitchUserItem.Tip=$Menu.SwitchUserTip
145 | SwitchUserItem.Icon=none
146 | LogOffItem.Command=logoff
147 | LogOffItem.Label=$Menu.LogOffShort
148 | LogOffItem.Tip=$Menu.LogOffTip
149 | LogOffItem.Icon=none
150 | LockItem.Command=lock
151 | LockItem.Label=$Menu.Lock
152 | LockItem.Tip=$Menu.LockTip
153 | LockItem.Icon=none
154 | SleepItem.Command=sleep
155 | SleepItem.Label=$Menu.Sleep
156 | SleepItem.Tip=$Menu.SleepTip
157 | SleepItem.Icon=none
158 | HibernateItem.Command=hibernate
159 | HibernateItem.Label=$Menu.Hibernate
160 | HibernateItem.Tip=$Menu.HibernateTip
161 | HibernateItem.Icon=none
162 | RestartItem.Command=restart
163 | RestartItem.Label=$Menu.Restart
164 | RestartItem.Tip=$Menu.RestartTip
165 | RestartItem.Icon=none
166 | UndockItem.Command=undock
167 | UndockItem.Label=$Menu.Undock
168 | UndockItem.Tip=$Menu.UndockTip
169 | UndockItem.Icon=none
170 | DisconnectItem.Command=disconnect
171 | DisconnectItem.Label=$Menu.Disconnect
172 | DisconnectItem.Tip=$Menu.DisconnectTip
173 | DisconnectItem.Icon=none
174 | ShutdownItem.Command=shutdown
175 | ShutdownItem.Label=$Menu.Shutdown
176 | ShutdownItem.Tip=$Menu.ShutdownTip
177 | ShutdownItem.Icon=none
178 |
179 |
180 |
--------------------------------------------------------------------------------