Guest User

Untitled

a guest
Mar 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. `/etc/xdg/menus/lxde-applications.menu`
  2.  
  3. ```xml
  4. <!-- Development Tools -->
  5. <Menu>
  6. <Name>Development</Name>
  7. <Directory>lxde-development.directory</Directory>
  8. <Include>
  9. <And>
  10. <Category>Development</Category>
  11. </And>
  12. <Filename>emacs.desktop</Filename>
  13. </Include>
  14. <Menu>
  15. !-- our new sub-section name: -->
  16. <Name>Eclipse</Name>
  17. <Directory>eclipse.directory</Directory>
  18. <Include>
  19. <And><Category>Eclipses</Category></And>
  20. </Include>
  21. </Menu>
  22. <Menu>
  23. !-- our new sub-section name: -->
  24. <Name>Jetbrains</Name>
  25. <Directory>jetbrains.directory</Directory>
  26. <Include>
  27. <And><Category>Jetbrains</Category></And>
  28. </Include>
  29. </Menu>
  30. <Menu>
  31. !-- our new sub-section name: -->
  32. <Name>Database</Name>
  33. <Directory>database.directory</Directory>
  34. <Include>
  35. <And><Category>Database</Category></And>
  36. </Include>
  37. </Menu>
  38. </Menu> <!-- End Development Tools -->
  39. ```
  40.  
  41.  
  42. `/home/bruno/.local/share/desktop-directories/eclipse.directory`
  43.  
  44. ```tomy
  45. [Desktop Entry]
  46. Encoding=UTF-8
  47. Name=Eclipses
  48. Type=Directory
  49. Icon=/opt/eclipses/eclipse-java/icon.xpm
  50. ```
  51. `/home/bruno/.local/share/desktop-directories/jetbrains.directory`
  52.  
  53. ```tomy
  54. [Desktop Entry]
  55. Encoding=UTF-8
  56. Name=Jetbrains
  57. Type=Directory
  58. Icon=/opt/jetbrains/idea-IU-173.4301.25/bin/idea.png
  59. ```
  60. ```
  61. [Desktop Entry]
  62. Name=Eclipse Java Oxygen
  63. Exec=/opt/eclipses/eclipse-oxygen-jee/eclipse-oxygen-jee
  64. MimeType=text/plain;
  65. Terminal=false
  66. Comment=Eclise Oxygen IDE Java
  67. Type=Application
  68. Icon=/opt/eclipses/eclipse-oxygen-jee/icon.xpm
  69. Categories=Eclipses;
  70. ```
Add Comment
Please, Sign In to add comment