


gksu gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.js
/* if (!bottomPosition) {
// Move Activities button to the right and change its label
Main.panel._leftBox.remove_actor(activitiesButton.actor);
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
} */

gorellana09 wrote:Thanks richyrich for your reply. Although that link did not have a solution it did help me with where to start looking, so I found where I could make my own tweak. Not sure if it is the only way to go but it works for me.
Here is what I did for any other insane OCD people out there like me who are driven nuts by illogical order of things
1. Open the extension.js file of the offending extension, in this case it is the menu extension:
- Code: Select all
gksu gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.js
2. Edit the extension.js file by commenting out the following:
- Code: Select all
/* if (!bottomPosition) {
// Move Activities button to the right and change its label
Main.panel._leftBox.remove_actor(activitiesButton.actor);
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
} */
Comment out by adding (/* and */). I guess you can also delete the entire thing but this is safer.
3. Save the edits and reload the gnome shell with alt+f2 then r and enter.
Now you have a success! Now things are in a more logical order.

if (!bottomPosition) {
// Move Activities button to the right and change its label
Main.panel._leftBox.remove_actor(activitiesButton.actor);
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
} if (!bottomPosition) {
// Remove Activities button
Main.panel._leftBox.remove_actor(activitiesButton.actor);
}
gorellana09 wrote:Thanks richyrich for your reply. Although that link did not have a solution it did help me with where to start looking, so I found where I could make my own tweak. Not sure if it is the only way to go but it works for me.
Here is what I did for any other insane OCD people out there like me who are driven nuts by illogical order of things
1. Open the extension.js file of the offending extension, in this case it is the menu extension:
- Code: Select all
gksu gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.js
2. Edit the extension.js file by commenting out the following:
- Code: Select all
/* if (!bottomPosition) {
// Move Activities button to the right and change its label
Main.panel._leftBox.remove_actor(activitiesButton.actor);
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
} */
Comment out by adding (/* and */). I guess you can also delete the entire thing but this is safer.
3. Save the edits and reload the gnome shell with alt+f2 then r and enter.
Now you have a success! Now things are in a more logical order.

gazzaf wrote:gorellana09 wrote:Thanks richyrich for your reply. Although that link did not have a solution it did help me with where to start looking, so I found where I could make my own tweak. Not sure if it is the only way to go but it works for me.
Here is what I did for any other insane OCD people out there like me who are driven nuts by illogical order of things
1. Open the extension.js file of the offending extension, in this case it is the menu extension:
- Code: Select all
gksu gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.js
2. Edit the extension.js file by commenting out the following:
- Code: Select all
/* if (!bottomPosition) {
// Move Activities button to the right and change its label
Main.panel._leftBox.remove_actor(activitiesButton.actor);
Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text("-");
} */
Comment out by adding (/* and */). I guess you can also delete the entire thing but this is safer.
3. Save the edits and reload the gnome shell with alt+f2 then r and enter.
Now you have a success! Now things are in a more logical order.
Thanks for that - it looks better that way ! Can I ask you which applet it is that you have displaying weather info on your screen shots ?
sudo add-apt-repository ppa:webupd8team/gnome3
sudo apt-get update
sudo apt-get install gnome-shell-extensions-weather

Users browsing this forum: No registered users and 0 guests