Last change
on this file since 401 was
193,
checked in by sebas, 15 years ago
|
script para poner iconos (firefox-iceweasle y thunderbird-icedove) sobre el escritorio y asegurar que quedan
|
File size:
775 bytes
|
Rev | Line | |
---|
[193] | 1 | # Maybe it's not the best way to add icons to the desktop |
---|
| 2 | # of every user, but the only way I found... @sebas |
---|
| 3 | if [ -x /usr/bin/xdg-desktop-icon ]; then |
---|
| 4 | if [ -r /usr/share/applications/iceweasel.desktop ]; then |
---|
| 5 | /usr/bin/xdg-desktop-icon install --novendor /usr/share/applications/iceweasel.desktop |
---|
| 6 | elif [ -r /usr/share/applications/firefox.desktop ]; then |
---|
| 7 | /usr/bin/xdg-desktop-icon install --novendor /usr/share/applications/firefox.desktop |
---|
| 8 | fi |
---|
| 9 | |
---|
| 10 | if [ -r /usr/share/applications/icedove.desktop ]; then |
---|
| 11 | /usr/bin/xdg-desktop-icon install --novendor /usr/share/applications/icedove.desktop |
---|
| 12 | elif [ -r /usr/share/applications/thunderbird.desktop ]; then |
---|
| 13 | /usr/bin/xdg-desktop-icon install --novendor /usr/share/applications/thunderbird.desktop |
---|
| 14 | fi |
---|
| 15 | fi |
---|
Note: See
TracBrowser
for help on using the repository browser.