| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 #--------------------------------------------- | 2 #--------------------------------------------- |
| 3 # xdg-icon-resource | 3 # xdg-icon-resource |
| 4 # | 4 # |
| 5 # Utility script to install icons on a Linux desktop. | 5 # Utility script to install icons on a Linux desktop. |
| 6 # | 6 # |
| 7 # Refer to the usage() function below for usage. | 7 # Refer to the usage() function below for usage. |
| 8 # | 8 # |
| 9 # Copyright 2009-2010, Fathi Boudra <fabo@freedesktop.org> |
| 10 # Copyright 2009-2010, Rex Dieter <rdieter@fedoraproject.org> |
| 9 # Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at> | 11 # Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at> |
| 10 # Copyright 2006, Jeremy White <jwhite@codeweavers.com> | 12 # Copyright 2006, Jeremy White <jwhite@codeweavers.com> |
| 11 # | 13 # |
| 12 # LICENSE: | 14 # LICENSE: |
| 13 # | 15 # |
| 14 # Permission is hereby granted, free of charge, to any person obtaining a | 16 # Permission is hereby granted, free of charge, to any person obtaining a |
| 15 # copy of this software and associated documentation files (the "Software"), | 17 # copy of this software and associated documentation files (the "Software"), |
| 16 # to deal in the Software without restriction, including without limitation | 18 # to deal in the Software without restriction, including without limitation |
| 17 # the rights to use, copy, modify, merge, publish, distribute, sublicense, | 19 # the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 18 # and/or sell copies of the Software, and to permit persons to whom the | 20 # and/or sell copies of the Software, and to permit persons to whom the |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 if [ x"$update" = x"yes" ] ; then | 832 if [ x"$update" = x"yes" ] ; then |
| 831 update_icon_database "$xdg_base_dir" | 833 update_icon_database "$xdg_base_dir" |
| 832 if [ -n "$dot_icon_dir" ] ; then | 834 if [ -n "$dot_icon_dir" ] ; then |
| 833 if [ -d "$dot_icon_dir/" -a ! -L "$dot_icon_dir" ] ; then | 835 if [ -d "$dot_icon_dir/" -a ! -L "$dot_icon_dir" ] ; then |
| 834 update_icon_database $dot_base_dir | 836 update_icon_database $dot_base_dir |
| 835 fi | 837 fi |
| 836 fi | 838 fi |
| 837 fi | 839 fi |
| 838 | 840 |
| 839 exit_success | 841 exit_success |
| OLD | NEW |