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

Clash 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:

indicator dropbox 18.04 gnome-flashback
add a comment |Â
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:

indicator dropbox 18.04 gnome-flashback
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
add a comment |Â
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:

indicator dropbox 18.04 gnome-flashback
How to fix broken nautilus-dropbox icon in ubuntu 18.04 GNOME-Flashback in top Panel?
See screenshot below:

indicator dropbox 18.04 gnome-flashback
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
add a comment |Â
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
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
5
down vote
Just to sum up the above.
dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start- 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.) - 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
gedit ~/.config/autostart/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox startsudo gedit /usr/share/applications/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox start
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
add a comment |Â
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.
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
add a comment |Â
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.
dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start- 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.) - 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
gedit ~/.config/autostart/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox startsudo gedit /usr/share/applications/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox start
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
add a comment |Â
up vote
5
down vote
Just to sum up the above.
dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start- 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.) - 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
gedit ~/.config/autostart/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox startsudo gedit /usr/share/applications/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox start
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
add a comment |Â
up vote
5
down vote
up vote
5
down vote
Just to sum up the above.
dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start- 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.) - 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
gedit ~/.config/autostart/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox startsudo gedit /usr/share/applications/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox start
Just to sum up the above.
dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start- 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.) - 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
gedit ~/.config/autostart/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox startsudo gedit /usr/share/applications/dropbox.desktopreplace
Exec=dropbox start -iwithExec=env XDG_CURRENT_DESKTOP=Unity dropbox start
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
add a comment |Â
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
add a comment |Â
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.
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
add a comment |Â
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.
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
add a comment |Â
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.
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.
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
add a comment |Â
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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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