| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 #--------------------------------------------- | 2 #--------------------------------------------- |
| 3 # xdg-desktop-menu | 3 # xdg-desktop-menu |
| 4 # | 4 # |
| 5 # Utility script to install menu items on a Linux desktop. | 5 # Utility script to install menu items on a Linux desktop. |
| 6 # Refer to the usage() function below for usage. | 6 # Refer to the usage() function below for usage. |
| 7 # | 7 # |
| 8 # Copyright 2009-2010, Fathi Boudra <fabo@freedesktop.org> |
| 9 # Copyright 2009-2010, Rex Dieter <rdieter@fedoraproject.org> |
| 8 # Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at> | 10 # Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at> |
| 9 # Copyright 2006, Jeremy White <jwhite@codeweavers.com> | 11 # Copyright 2006, Jeremy White <jwhite@codeweavers.com> |
| 10 # | 12 # |
| 11 # LICENSE: | 13 # LICENSE: |
| 12 # | 14 # |
| 13 # Permission is hereby granted, free of charge, to any person obtaining a | 15 # Permission is hereby granted, free of charge, to any person obtaining a |
| 14 # copy of this software and associated documentation files (the "Software"), | 16 # copy of this software and associated documentation files (the "Software"), |
| 15 # to deal in the Software without restriction, including without limitation | 17 # to deal in the Software without restriction, including without limitation |
| 16 # the rights to use, copy, modify, merge, publish, distribute, sublicense, | 18 # the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 17 # and/or sell copies of the Software, and to permit persons to whom the | 19 # and/or sell copies of the Software, and to permit persons to whom the |
| (...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 | 1215 |
| 1214 ;; | 1216 ;; |
| 1215 esac | 1217 esac |
| 1216 done | 1218 done |
| 1217 | 1219 |
| 1218 if [ x"$update" = x"yes" ] ; then | 1220 if [ x"$update" = x"yes" ] ; then |
| 1219 update_desktop_database | 1221 update_desktop_database |
| 1220 fi | 1222 fi |
| 1221 | 1223 |
| 1222 exit_success | 1224 exit_success |
| OLD | NEW |