How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
3
down vote

favorite












How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?



See screenshot below:



image for Dropbox Nautilus bug







share|improve this question


















  • 2




    Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
    – karel
    Apr 28 at 16:12















up vote
3
down vote

favorite












How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?



See screenshot below:



image for Dropbox Nautilus bug







share|improve this question


















  • 2




    Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
    – karel
    Apr 28 at 16:12













up vote
3
down vote

favorite









up vote
3
down vote

favorite











How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?



See screenshot below:



image for Dropbox Nautilus bug







share|improve this question














How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?



See screenshot below:



image for Dropbox Nautilus bug









share|improve this question













share|improve this question




share|improve this question








edited May 1 at 20:48

























asked Apr 28 at 13:09









Vijay

147112




147112







  • 2




    Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
    – karel
    Apr 28 at 16:12













  • 2




    Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
    – karel
    Apr 28 at 16:12








2




2




Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
– karel
Apr 28 at 16:12





Possible duplicate of What is this "forbidden" icon in my systray? This is a screenshot from the linked question: i.stack.imgur.com/u3VGu.jpg
– karel
Apr 28 at 16:12











2 Answers
2






active

oldest

votes

















up vote
5
down vote













Just to sum up the above.



  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start

  2. Go to the Preferences in Dropbox after it starts up and uncheck Start Dropbox on system startup.
    (to prevent dropbx from changing the startup command after reboot.)

  3. Go to Applications > Preferences > Startup Applications and click on Add

Enter

Name: Dropbox

Command: env XDG_CURRENT_DESKTOP=Unity dropbox start

Comment: Sync your files across computers and to the web




  1. gedit ~/.config/autostart/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start




  2. sudo gedit /usr/share/applications/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start







share|improve this answer






















  • Prettified the formatting of your answer.
    – N0rbert
    May 1 at 20:59










  • After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
    – user26866
    Aug 15 at 18:27

















up vote
3
down vote













I can confirm it on clean Ubuntu 18.04 LTS install with GNOME FlashBack session, so I installed only GNOME Panel new package and Nautilus Dropbox plug-in



sudo apt-get install gnome-panel nautilus-dropbox


After installing of nautilus-dropbox I have logged-in to my Dropbox account.



Then after rebooting system I get the same image as OP, so I reported bug 1767665.



It may be fixed locally as @Alberts Muktupāvels (muktupavels) suggested on launchpad.

I shorten method to just two simple lines:



mkdir -p ~/.config/autostart/
cp /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop


The first finds Exec line dropbox start -i in it and changes it to env XDG_CURRENT_DESKTOP=Unity dropbox start (it forces dropbox to "use" Unity desktop even if we are using GNOME), the second creates user XDG-autostart directory, the third line copies XDG-autostart desktop-file to user XDG-autostart directory.



Afterwards Dropbox menu is in place and works as expected.






share|improve this answer






















  • I edited both question and answer (see above). Voted to reopen.
    – N0rbert
    May 1 at 17:17










  • I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
    – Vijay
    May 1 at 20:27











  • I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
    – N0rbert
    May 1 at 20:31










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1029225%2fhow-to-fix-broken-nautilus-dropbox-icon-in-ubuntu-18-04-gnome-flashback-in-top-p%23new-answer', 'question_page');

);

Post as a guest






























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
5
down vote













Just to sum up the above.



  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start

  2. Go to the Preferences in Dropbox after it starts up and uncheck Start Dropbox on system startup.
    (to prevent dropbx from changing the startup command after reboot.)

  3. Go to Applications > Preferences > Startup Applications and click on Add

Enter

Name: Dropbox

Command: env XDG_CURRENT_DESKTOP=Unity dropbox start

Comment: Sync your files across computers and to the web




  1. gedit ~/.config/autostart/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start




  2. sudo gedit /usr/share/applications/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start







share|improve this answer






















  • Prettified the formatting of your answer.
    – N0rbert
    May 1 at 20:59










  • After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
    – user26866
    Aug 15 at 18:27














up vote
5
down vote













Just to sum up the above.



  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start

  2. Go to the Preferences in Dropbox after it starts up and uncheck Start Dropbox on system startup.
    (to prevent dropbx from changing the startup command after reboot.)

  3. Go to Applications > Preferences > Startup Applications and click on Add

Enter

Name: Dropbox

Command: env XDG_CURRENT_DESKTOP=Unity dropbox start

Comment: Sync your files across computers and to the web




  1. gedit ~/.config/autostart/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start




  2. sudo gedit /usr/share/applications/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start







share|improve this answer






















  • Prettified the formatting of your answer.
    – N0rbert
    May 1 at 20:59










  • After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
    – user26866
    Aug 15 at 18:27












up vote
5
down vote










up vote
5
down vote









Just to sum up the above.



  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start

  2. Go to the Preferences in Dropbox after it starts up and uncheck Start Dropbox on system startup.
    (to prevent dropbx from changing the startup command after reboot.)

  3. Go to Applications > Preferences > Startup Applications and click on Add

Enter

Name: Dropbox

Command: env XDG_CURRENT_DESKTOP=Unity dropbox start

Comment: Sync your files across computers and to the web




  1. gedit ~/.config/autostart/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start




  2. sudo gedit /usr/share/applications/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start







share|improve this answer














Just to sum up the above.



  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start

  2. Go to the Preferences in Dropbox after it starts up and uncheck Start Dropbox on system startup.
    (to prevent dropbx from changing the startup command after reboot.)

  3. Go to Applications > Preferences > Startup Applications and click on Add

Enter

Name: Dropbox

Command: env XDG_CURRENT_DESKTOP=Unity dropbox start

Comment: Sync your files across computers and to the web




  1. gedit ~/.config/autostart/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start




  2. sudo gedit /usr/share/applications/dropbox.desktop



    replace Exec=dropbox start -i with



    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start








share|improve this answer














share|improve this answer



share|improve this answer








edited May 2 at 3:36

























answered May 1 at 20:53









Vijay

147112




147112











  • Prettified the formatting of your answer.
    – N0rbert
    May 1 at 20:59










  • After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
    – user26866
    Aug 15 at 18:27
















  • Prettified the formatting of your answer.
    – N0rbert
    May 1 at 20:59










  • After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
    – user26866
    Aug 15 at 18:27















Prettified the formatting of your answer.
– N0rbert
May 1 at 20:59




Prettified the formatting of your answer.
– N0rbert
May 1 at 20:59












After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
– user26866
Aug 15 at 18:27




After doing these steps, the dropbox icon came back, but if I left or right click on the icon, I just get an emptry menu. I'm running xubuntu 18.04.
– user26866
Aug 15 at 18:27












up vote
3
down vote













I can confirm it on clean Ubuntu 18.04 LTS install with GNOME FlashBack session, so I installed only GNOME Panel new package and Nautilus Dropbox plug-in



sudo apt-get install gnome-panel nautilus-dropbox


After installing of nautilus-dropbox I have logged-in to my Dropbox account.



Then after rebooting system I get the same image as OP, so I reported bug 1767665.



It may be fixed locally as @Alberts Muktupāvels (muktupavels) suggested on launchpad.

I shorten method to just two simple lines:



mkdir -p ~/.config/autostart/
cp /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop


The first finds Exec line dropbox start -i in it and changes it to env XDG_CURRENT_DESKTOP=Unity dropbox start (it forces dropbox to "use" Unity desktop even if we are using GNOME), the second creates user XDG-autostart directory, the third line copies XDG-autostart desktop-file to user XDG-autostart directory.



Afterwards Dropbox menu is in place and works as expected.






share|improve this answer






















  • I edited both question and answer (see above). Voted to reopen.
    – N0rbert
    May 1 at 17:17










  • I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
    – Vijay
    May 1 at 20:27











  • I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
    – N0rbert
    May 1 at 20:31














up vote
3
down vote













I can confirm it on clean Ubuntu 18.04 LTS install with GNOME FlashBack session, so I installed only GNOME Panel new package and Nautilus Dropbox plug-in



sudo apt-get install gnome-panel nautilus-dropbox


After installing of nautilus-dropbox I have logged-in to my Dropbox account.



Then after rebooting system I get the same image as OP, so I reported bug 1767665.



It may be fixed locally as @Alberts Muktupāvels (muktupavels) suggested on launchpad.

I shorten method to just two simple lines:



mkdir -p ~/.config/autostart/
cp /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop


The first finds Exec line dropbox start -i in it and changes it to env XDG_CURRENT_DESKTOP=Unity dropbox start (it forces dropbox to "use" Unity desktop even if we are using GNOME), the second creates user XDG-autostart directory, the third line copies XDG-autostart desktop-file to user XDG-autostart directory.



Afterwards Dropbox menu is in place and works as expected.






share|improve this answer






















  • I edited both question and answer (see above). Voted to reopen.
    – N0rbert
    May 1 at 17:17










  • I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
    – Vijay
    May 1 at 20:27











  • I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
    – N0rbert
    May 1 at 20:31












up vote
3
down vote










up vote
3
down vote









I can confirm it on clean Ubuntu 18.04 LTS install with GNOME FlashBack session, so I installed only GNOME Panel new package and Nautilus Dropbox plug-in



sudo apt-get install gnome-panel nautilus-dropbox


After installing of nautilus-dropbox I have logged-in to my Dropbox account.



Then after rebooting system I get the same image as OP, so I reported bug 1767665.



It may be fixed locally as @Alberts Muktupāvels (muktupavels) suggested on launchpad.

I shorten method to just two simple lines:



mkdir -p ~/.config/autostart/
cp /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop


The first finds Exec line dropbox start -i in it and changes it to env XDG_CURRENT_DESKTOP=Unity dropbox start (it forces dropbox to "use" Unity desktop even if we are using GNOME), the second creates user XDG-autostart directory, the third line copies XDG-autostart desktop-file to user XDG-autostart directory.



Afterwards Dropbox menu is in place and works as expected.






share|improve this answer














I can confirm it on clean Ubuntu 18.04 LTS install with GNOME FlashBack session, so I installed only GNOME Panel new package and Nautilus Dropbox plug-in



sudo apt-get install gnome-panel nautilus-dropbox


After installing of nautilus-dropbox I have logged-in to my Dropbox account.



Then after rebooting system I get the same image as OP, so I reported bug 1767665.



It may be fixed locally as @Alberts Muktupāvels (muktupavels) suggested on launchpad.

I shorten method to just two simple lines:



mkdir -p ~/.config/autostart/
cp /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop


The first finds Exec line dropbox start -i in it and changes it to env XDG_CURRENT_DESKTOP=Unity dropbox start (it forces dropbox to "use" Unity desktop even if we are using GNOME), the second creates user XDG-autostart directory, the third line copies XDG-autostart desktop-file to user XDG-autostart directory.



Afterwards Dropbox menu is in place and works as expected.







share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 6 at 10:26

























answered Apr 28 at 15:33









N0rbert

15.2k33069




15.2k33069











  • I edited both question and answer (see above). Voted to reopen.
    – N0rbert
    May 1 at 17:17










  • I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
    – Vijay
    May 1 at 20:27











  • I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
    – N0rbert
    May 1 at 20:31
















  • I edited both question and answer (see above). Voted to reopen.
    – N0rbert
    May 1 at 17:17










  • I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
    – Vijay
    May 1 at 20:27











  • I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
    – N0rbert
    May 1 at 20:31















I edited both question and answer (see above). Voted to reopen.
– N0rbert
May 1 at 17:17




I edited both question and answer (see above). Voted to reopen.
– N0rbert
May 1 at 17:17












I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
– Vijay
May 1 at 20:27





I suggest that 1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start 2. Go to the settings in dropbox after it starts up and select to not start at startup. 3. Add or edit the start up application for dropbox with the command "env XDG_CURRENT_DESKTOP=Unity dropbox start"
– Vijay
May 1 at 20:27













I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
– N0rbert
May 1 at 20:31




I tested my approach on clean installation of 18.04 LTS. It just works. So I prefer KISS principle here :)
– N0rbert
May 1 at 20:31

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1029225%2fhow-to-fix-broken-nautilus-dropbox-icon-in-ubuntu-18-04-gnome-flashback-in-top-p%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error

How do I move numbers in filenames, in a batch renaming operation?