[PATCH] kde-icon-url-fix.diff
CyberOrg <[email protected]>
| Newsgroups | gmane.linux.terminal-server.devel |
|---|---|
| Message-ID | <[email protected]> |
Hello Community
The attached patch fixes the kde icon not working on gnome desktop.
Regards
-J
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_____________________________________________________________________
Ltsp-developer mailing list. To un-subscribe, or change prefs, goto:
https://lists.sourceforge.net/lists/listinfo/ltsp-developer
For additional LTSP help, try #ltsp channel on irc.freenode.net
kde-icon-url-fix.diff
(text/x-patch, 614 B)
--- a/doc/examples/kde-desktop-icons 2008-03-08 17:37:49.000000000 +0530
+++ b/doc/examples/kde-desktop-icons 2008-08-31 13:58:41.000000000 +0530
@@ -38,7 +38,7 @@
try:
desktop_file = open(desktop_file_s, 'w')
- desktop_file.write('[Desktop Entry]\nEncoding=UTF-8\nName=%s\nIcon=%s\nType=Link\nURL=%s\n' % (dev, icon, mountpoint))
+ desktop_file.write('[Desktop Entry]\nEncoding=UTF-8\nName=%s\nIcon=%s\nType=Link\nURL=file://%s\n' % (dev, icon, mountpoint))
desktop_file.close()
except IOError, e:
print >>sys.stderr, 'unable to create desktop file:', e