1

I'm using Ubuntu 18.04.5 LTS.

I need to move "notification day and time" to right side corner. Right now it is located at middle of the screen.

I'm unable to install Gnome tweak tool. Can anyone help to move notification other than installing gnome tweak tool idea?

enter image description here

sivasdpi
  • 223
  • 1
  • 3
  • 9

1 Answers1

0

To move to the Right side run the below command.

gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval string:'Main.panel._centerBox.remove_child(Main.panel.statusArea.dateMenu.container); Main.panel._rightBox.insert_child_at_index(Main.panel.statusArea.dateMenu.container, 0);'

To make it to normal, run the below command.

gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval string:'Main.panel._rightBox.remove_child(Main.panel.statusArea.dateMenu.container); Main.panel._centerBox.add_child(Main.panel.statusArea.dateMenu.container);'

You need to add the first command to startup applications list for persistence. Otherwise after every logout and login, you need to run the first command.

enter image description here