Advertisement
corrosiontears

Corrigir bug: Dropbox sem Ícone no Linux

Feb 9th, 2015
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.80 KB | None | 0 0
  1.                                         ### Corrigir erro: Dropbox sem Ícone Antergos ###
  2. ### Dica Originalmente encontrada em: https://bbs.archlinux.org/viewtopic.php?id=190940
  3. ## Edite o arquivo .config/autostart/dropbox.desktop
  4. ## Deixando-o como listado abaixo:
  5.  
  6. [Desktop Entry]
  7. Name=Dropbox
  8. GenericName=Network Storage
  9. Comment=Dropbox is a free service that lets you bring your photos, docs, and videos anywhere and share them easily
  10. Exec=strace dropbox &> /dev/zero
  11. Icon=dropbox
  12. Terminal=false
  13. Type=Application
  14. Categories=Network;
  15. StartupNotify=false
  16.  
  17. ## Depois como root impeça que o arquivo seja reescrito com o comando:
  18.  
  19. chattr +i .config/autostart/dropbox.desktop
  20.  
  21. ## Caso esteja usando outra distro ou outra versão do dropbox basta mudar no "Exec=" de "dropbox" para "dropboxd"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement