- Code: Select all
windowList = new WindowList.WindowList(St.Side.TOP);
panel._leftBox.add(windowList.actor);
change too
- Code: Select all
//windowList = new WindowList.WindowList(St.Side.TOP);
//panel._leftBox.add(windowList.actor);
If you are using a different cinnamon layout, you need to find the right code block to edit. In the main.js file you will see
- Code: Select all
if (desktop_layout == LAYOUT_TRADITIONAL) {
//code here
}
else if (desktop_layout == LAYOUT_FLIPPED) {
// code here
}
else if (desktop_layout == LAYOUT_CLASSIC) {
// code here
}
A lot of code is repeated in these blocks, comment out the windowlist for your layout.
Hopefully this will get made a feature in cinnamon settings in future.
Looks like this: http://i.imgur.com/6r4rO.jpg





