Paul / Tommy:<br><br>Thanks for the pointers. I'll try out your solutions and let you know how it goes.<br><br>John<br><br><div><span class="gmail_quote">On 9/23/06, <b class="gmail_sendername">Tommy Reynolds</b> <<a href="mailto:Tommy.Reynolds@megacoder.com">
Tommy.Reynolds@megacoder.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Uttered "John Babich" <<a href="mailto:jmbabich@gmail.com">
jmbabich@gmail.com</a>>, spake thus:<br><br>> Does any one know of a linux utility that extracts embedded icons from a<br>> linux<br>> application? I know of several such utilities for Windows.<br>><br>> If such a utility doesn't exist, is there an alternate method to achieve the
<br>> same results.<br><br>You are right: icons in Linux applications are not packaged in a<br>resource file like WinDoze duz.  Instead, they are either separate<br>files installed by the RPM, or they are embedded in the program text
<br>where they look a lot like orginary code.<br><br>Two solutions come to mind:<br><br>1) Pick them out of the RPM file.  Say you have a program "foo" and<br>   you know there are icons associated with it.  Using The Force,
<br>   Luke, you can use this command line string:<br><br>   $ rpm -q -f $(which foo) -l | egrep -i '.(png|jpg|gif|xpm|xbm)$'<br><br>   to see a list of image files installed by the RPM which owns the<br>   executable "foo".  (If you already know the path to the "foo"
<br>   executable, just replace the "$(which foo)" with that path.<br><br>2) Cheat by using a screen shot...<br><br>HTH<br><br>--<br>I'm already an anomaly, I shall soon be an anachronism, and I have<br>every intention of dying an abuse!
<br><br><br>--<br>fedora-docs-list mailing list<br><a href="mailto:fedora-docs-list@redhat.com">fedora-docs-list@redhat.com</a><br>To unsubscribe:<br><a href="https://www.redhat.com/mailman/listinfo/fedora-docs-list">https://www.redhat.com/mailman/listinfo/fedora-docs-list
</a><br><br><br></blockquote></div><br>