Facebook Twitter Instagram
    WiredRevolution.com
    • Home
    • About
    • Contact Us
    • Essential Linux Commands
    • Sitemap
    Facebook Twitter Instagram
    WiredRevolution.com
    gnome

    Fix insync Gnome Shell extension error on Ubuntu

    RyanBy RyanDecember 5, 20122 Comments1 Min Read
    Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Email

    I ran into a problem using the insync service which synchronizes your files in Ubuntu and your Google Drive account. For some reason the Gnome Shell extension, which shows the insync’s status, was not showing up. When I looked at the Gnome Tweak Tool it showed an error had occured.

    It turns out that the extension name was the same as another extension I had installed. Here is the error from .xsession-errors.

    $ cat .xsession-errors | grep brett
    JS LOG: /usr/share/gnome-shell/extensions/brett@insynchq.com
    JS LOG: Extension "brett@insynchq.com" had error: Error: Extension point conflict: there is already a status indicator for role places-menu

    To fix this you need to modify the extension name:

    /usr/share/gnome-shell/extensions/brett@insynchq.com/extension.js

    function enable() {
    _app = new GnomeApp;
    Main.panel.addToStatusArea('places-menu', _app);
    }

    function enable() {
    _app = new GnomeApp;
    Main.panel.addToStatusArea('places-menu-insync', _app);
    }

    Then restart Gnome Shell by hitting alt+f2 and typing the letter ‘r’ into the window.

    Don’t forget to make sure the extension is enabled in the Gnome Shell Tweak tool.

    Share. Facebook Twitter Pinterest LinkedIn WhatsApp Reddit Email
    Previous ArticleNetflix now working on Ubuntu Linux
    Next Article How to test the syntax of a Python script

    Related Posts

    Netflix now working on Ubuntu Linux

    Transfer your ssh public key to a remote machine

    Fix SketchUp refresh bug on Linux with WINE

    Most Commented
    March 12, 2009

    Fix blue tinted video in Ubuntu

    September 10, 2010

    Setup SSH access between VirtualBox Host and Guest VMs

    March 8, 2011

    Install GNOME Shell in Ubuntu 10.10 Maverick

    April 4, 2009

    Setup the PS3 Bluetooth Controller on Ubuntu

    October 22, 2008

    How to correctly use LD_LIBRARY_PATH

    Recent Comments
    • Execute command on linux virtual machine (or server) from windows commandline on Setup SSH access between VirtualBox Host and Guest VMs
    • Solved: How to SSH to a VirtualBox guest externally through a host? - Daily Developer Blog on Setup SSH access between VirtualBox Host and Guest VMs
    • How to SSH to a VirtualBox guest externally through a host? [closed] – Code D3 on Setup SSH access between VirtualBox Host and Guest VMs
    • How to copy and paste from VirtualBox? [duplicate] on Setup SSH access between VirtualBox Host and Guest VMs
    • Jackie Laguna on Fix OpenGL: ChoosePixelFormat SketchUp error in WINE
    © 2025 ThemeSphere. Designed by ThemeSphere.

    Type above and press Enter to search. Press Esc to cancel.