Development/Tutorials/Icons: Difference between revisions
Appearance
< Development | Tutorials
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{stub}} | {{stub}} | ||
# strace -e open ktimetracker 2>&1 | grep icon | Maybe you have already searched for yourself how a KDE application finds its icons. You will not be successful like this: | ||
# [http://www.linuxintro.org/wiki/Strace#Search_for_a_syscall strace -e open] ktimetracker 2>&1 | grep icon | |||
open("/usr/lib64/libkemoticons.so.4", O_RDONLY) = 3 | open("/usr/lib64/libkemoticons.so.4", O_RDONLY) = 3 | ||
# | # |
Revision as of 20:59, 27 August 2011
Maybe you have already searched for yourself how a KDE application finds its icons. You will not be successful like this:
# strace -e open ktimetracker 2>&1 | grep icon open("/usr/lib64/libkemoticons.so.4", O_RDONLY) = 3 #