
Icons for Licq work with the Qt-GUI plugin and are easy to install.
To use one, simply unpack it into the qt-gui directory (/usr/local/share/licq/qt-gui or /usr/share/licq/qt-gui) or your licq directory (~/.licq) and then select it from the Skin Browser. Emoticon packs must be put in the emoticons directory of the forementioned directories.
Skins :: Icons :: Sounds
$filetypes = array('.gz'); $filelist = writetable('./iconsets/iconfiles', $filetypes); function writetable($directory, $filetypes) { //Table start $handle = opendir($directory); $nameList = file('iconsets/names.txt'); foreach ($nameList as $key => $value) { $nameList[$key] = trim($value); } $count =0; //Get filenames while (($file = readdir($handle))!==false) { if (strcmp(".",$file)!=0 && strcmp("..",$file)!=0) { $filearray[$count] = $file; $count++; } } closedir($handle); $count = 0; //Sort 'em by name sort($filearray); //Print list $counter = 0; for ($i = 0; $i < count($filearray); $i++) { $extension = strrchr($filearray[$i], "."); if (in_array($extension, $filetypes)) { $pic = split("\.", $filearray[$i]); foreach ($nameList as $name) { $temp = split(":", $name); if ($temp[0] == $pic[1]) { $author = $temp[1]; } } $list .= ''; $counter++; } } return $list; } ?>| echo $filelist ?> |