bimsebasse wrote:That means I'm gonna stop tinkering with it in here - esteban and daniel (and others), you should commit ideas and possible fixes straight to the devs on the github page if you got any.
How long will it take for Mint 13 to be released?
Well, in the meantime we can play a little.
As it was announced, both
MGSE-menu and
windowlist were updated, and now is time to re-apply our tweaks to the improved versions.
(It is assumed that you have the
tweaked version of reflections already installed and you are using the single bottom panel configuration)
Let's start with MGSE menu. Let's get rid of the ugly "-" :
Open a terminal and do a
sudo gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.jsAt the opened gedit, scroll down to line
830 and you will find this:
- Code: Select all
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
Now change it to this:
- Code: Select all
// Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
// activitiesButton._label.set_text("-");
Save it and close gedit.
Now the windowlist, let's make the popup menu show upwards:
At terminal, type the following:
sudo gedit /usr/share/gnome-shell/extensions/windowlist@linuxmint.com/extension.jsScroll down in the opened gedit to line
37, you will see this:
- Code: Select all
PopupMenu.PopupMenu.prototype._init.call(this, actor, 0.0, St.Side.TOP, 0);
Now, change it to:
- Code: Select all
PopupMenu.PopupMenu.prototype._init.call(this, actor, 0.0, St.Side.BOTTOM, 0);
Save and restart Gnome shell (
Alt+F2 r).
What's new?
No more shell crash when we install new applications (that was menu's bad behaviour), and now windowlist has drag&drop !!!
Try this: open two nautilus windows, minimize one of them, then pick a file or folder from the other and drag it to the window list button of the minimized window... see?
And if you take a closer look you will notice some other cosmetic changes.