parent
59e9776ac2
commit
aaa680c41f
@ -0,0 +1,18 @@
|
||||
Not build using tar inside .orig, no DEB_TDE_CVS_MAKE := yes
|
||||
Don't build-dep on libgnokii-dev, not in main
|
||||
Install /usr/share/services/kontact/knode* in knode and add replaces
|
||||
don't build-dep on gnokii or automake1.9
|
||||
make kontact depend on kmail, korganizer, kaddressbook
|
||||
Remove 16_kde_modulename.diff, module name isn't changed in Ubuntu
|
||||
remove debian/stamp-libtool-update:
|
||||
various Replaces/Conflicts (search for ubuntu)
|
||||
split out services/kontact/*desktop from kontact to indiviual apps
|
||||
add kandy*xpm to debian/icons and install lines to kandy.install
|
||||
remove clean:: rule
|
||||
Control has networkstatus-dev package and networkstatus package includes
|
||||
libnetworkstatus.so* files
|
||||
build-dep on gpgsm
|
||||
kmail depends on gpgsm, gnupg-agent, pinentry-qt | pinentry-x11
|
||||
add scalix support
|
||||
|
||||
remove debian/patches/30_debianize_akregator_default.diff
|
@ -0,0 +1,36 @@
|
||||
/usr/bin/akregator
|
||||
/usr/lib/*/trinity/libakregatorpart.la
|
||||
/usr/lib/*/trinity/libakregatorpart.so
|
||||
/usr/lib/*/trinity/libakregator_mk4storage_plugin.la
|
||||
/usr/lib/*/trinity/libakregator_mk4storage_plugin.so
|
||||
/usr/lib/*/libakregatorprivate.la
|
||||
/usr/lib/*/libakregatorprivate.so
|
||||
/usr/lib/*/libakregatorprivate.so.0
|
||||
/usr/lib/*/libakregatorprivate.so.0.0.0
|
||||
/usr/share/applications/tde/akregator.desktop
|
||||
/usr/share/apps/akregator
|
||||
/usr/share/config.kcfg/akregator.kcfg
|
||||
/usr/share/config.kcfg/mk4config.kcfg
|
||||
/usr/share/doc/tde/HTML/en/akregator
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/feed
|
||||
/usr/share/icons/hicolor/128x128/apps/akregator.png
|
||||
/usr/share/icons/crystalsvg/16x16/actions/rss_tag.png
|
||||
/usr/share/icons/crystalsvg/22x22/actions/rss_tag.png
|
||||
/usr/share/icons/crystalsvg/32x32/actions/rss_tag.png
|
||||
/usr/share/icons/crystalsvg/48x48/actions/rss_tag.png
|
||||
/usr/share/icons/crystalsvg/64x64/actions/rss_tag.png
|
||||
/usr/share/icons/crystalsvg/16x16/apps/akregator_empty.png
|
||||
/usr/share/icons/hicolor/16x16/apps/akregator.png
|
||||
/usr/share/icons/hicolor/22x22/apps/akregator.png
|
||||
/usr/share/icons/hicolor/32x32/apps/akregator.png
|
||||
/usr/share/icons/hicolor/48x48/apps/akregator.png
|
||||
/usr/share/icons/hicolor/64x64/apps/akregator.png
|
||||
/usr/share/icons/hicolor/scalable/apps/akregator.svgz
|
||||
/usr/share/services/akregator_mk4storage_plugin.desktop
|
||||
/usr/share/services/akregator_part.desktop
|
||||
/usr/share/services/feed.protocol
|
||||
/usr/share/services/kontact/akregatorplugin*.desktop
|
||||
/usr/share/servicetypes/akregator_plugin.desktop
|
||||
../icons/akregator.xpm /usr/share/pixmaps
|
||||
../icons/akregator-16.xpm /usr/share/pixmaps
|
||||
|
@ -0,0 +1 @@
|
||||
debian/man/out/akregator-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(akregator-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Web News"\
|
||||
hints="TDE"\
|
||||
title="aKregator"\
|
||||
icon32x32="/usr/share/pixmaps/akregator.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/akregator-16.xpm"\
|
||||
command="/usr/bin/akregator"
|
@ -0,0 +1,229 @@
|
||||
/* O_*, F_*, FD_* bit values for Linux/x86-64.
|
||||
Copyright (C) 2001, 2002, 2004, 2006, 2007 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, write to the Free
|
||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA. */
|
||||
|
||||
#ifndef _FCNTL_H
|
||||
# error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <bits/wordsize.h>
|
||||
#ifdef __USE_GNU
|
||||
# include <bits/uio.h>
|
||||
#endif
|
||||
|
||||
|
||||
/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
|
||||
located on an ext2 file system */
|
||||
#define O_ACCMODE 0003
|
||||
#define O_RDONLY 00
|
||||
#define O_WRONLY 01
|
||||
#define O_RDWR 02
|
||||
#define O_CREAT 0100 /* not fcntl */
|
||||
#define O_EXCL 0200 /* not fcntl */
|
||||
#define O_NOCTTY 0400 /* not fcntl */
|
||||
#define O_TRUNC 01000 /* not fcntl */
|
||||
#define O_APPEND 02000
|
||||
#define O_NONBLOCK 04000
|
||||
#define O_NDELAY O_NONBLOCK
|
||||
#define O_SYNC 010000
|
||||
#define O_FSYNC O_SYNC
|
||||
#define O_ASYNC 020000
|
||||
|
||||
#ifdef __USE_GNU
|
||||
# define O_DIRECT 040000 /* Direct disk access. */
|
||||
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
||||
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||
#endif
|
||||
|
||||
/* For now Linux has synchronisity options for data and read operations.
|
||||
We define the symbols here but let them do the same as O_SYNC since
|
||||
this is a superset. */
|
||||
#if defined __USE_POSIX199309 || defined __USE_UNIX98
|
||||
# define O_DSYNC O_SYNC /* Synchronize data. */
|
||||
# define O_RSYNC O_SYNC /* Synchronize read operations. */
|
||||
#endif
|
||||
|
||||
#ifdef __USE_LARGEFILE64
|
||||
# if __WORDSIZE == 64
|
||||
# define O_LARGEFILE 0
|
||||
# else
|
||||
# define O_LARGEFILE 0100000
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Values for the second argument to `fcntl'. */
|
||||
#define F_DUPFD 0 /* Duplicate file descriptor. */
|
||||
#define F_GETFD 1 /* Get file descriptor flags. */
|
||||
#define F_SETFD 2 /* Set file descriptor flags. */
|
||||
#define F_GETFL 3 /* Get file status flags. */
|
||||
#define F_SETFL 4 /* Set file status flags. */
|
||||
#if __WORDSIZE == 64
|
||||
# define F_GETLK 5 /* Get record locking info. */
|
||||
# define F_SETLK 6 /* Set record locking info (non-blocking). */
|
||||
# define F_SETLKW 7 /* Set record locking info (blocking). */
|
||||
/* Not necessary, we always have 64-bit offsets. */
|
||||
# define F_GETLK64 5 /* Get record locking info. */
|
||||
# define F_SETLK64 6 /* Set record locking info (non-blocking). */
|
||||
# define F_SETLKW64 7 /* Set record locking info (blocking). */
|
||||
#else
|
||||
# ifndef __USE_FILE_OFFSET64
|
||||
# define F_GETLK 5 /* Get record locking info. */
|
||||
# define F_SETLK 6 /* Set record locking info (non-blocking). */
|
||||
# define F_SETLKW 7 /* Set record locking info (blocking). */
|
||||
# else
|
||||
# define F_GETLK F_GETLK64 /* Get record locking info. */
|
||||
# define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/
|
||||
# define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */
|
||||
# endif
|
||||
# define F_GETLK64 12 /* Get record locking info. */
|
||||
# define F_SETLK64 13 /* Set record locking info (non-blocking). */
|
||||
# define F_SETLKW64 14 /* Set record locking info (blocking). */
|
||||
#endif
|
||||
|
||||
#if defined __USE_BSD || defined __USE_UNIX98
|
||||
# define F_SETOWN 8 /* Get owner of socket (receiver of SIGIO). */
|
||||
# define F_GETOWN 9 /* Set owner of socket (receiver of SIGIO). */
|
||||
#endif
|
||||
|
||||
#ifdef __USE_GNU
|
||||
# define F_SETSIG 10 /* Set number of signal to be sent. */
|
||||
# define F_GETSIG 11 /* Get number of signal to be sent. */
|
||||
#endif
|
||||
|
||||
#ifdef __USE_GNU
|
||||
# define F_SETLEASE 1024 /* Set a lease. */
|
||||
# define F_GETLEASE 1025 /* Enquire what lease is active. */
|
||||
# define F_NOTIFY 1026 /* Request notfications on a directory. */
|
||||
# define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with
|
||||
close-on-exit set. */
|
||||
#endif
|
||||
|
||||
/* For F_[GET|SET]FD. */
|
||||
#define FD_CLOEXEC 1 /* actually anything with low bit set goes */
|
||||
|
||||
/* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
|
||||
#define F_RDLCK 0 /* Read lock. */
|
||||
#define F_WRLCK 1 /* Write lock. */
|
||||
#define F_UNLCK 2 /* Remove lock. */
|
||||
|
||||
/* For old implementation of bsd flock(). */
|
||||
#define F_EXLCK 4 /* or 3 */
|
||||
#define F_SHLCK 8 /* or 4 */
|
||||
|
||||
#ifdef __USE_BSD
|
||||
/* Operations for bsd flock(), also used by the kernel implementation. */
|
||||
# define LOCK_SH 1 /* shared lock */
|
||||
# define LOCK_EX 2 /* exclusive lock */
|
||||
# define LOCK_NB 4 /* or'd with one of the above to prevent
|
||||
blocking */
|
||||
# define LOCK_UN 8 /* remove lock */
|
||||
#endif
|
||||
|
||||
#ifdef __USE_GNU
|
||||
# define LOCK_MAND 32 /* This is a mandatory flock: */
|
||||
# define LOCK_READ 64 /* ... which allows concurrent read operations. */
|
||||
# define LOCK_WRITE 128 /* ... which allows concurrent write operations. */
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#endif
|
||||
|
||||
#ifdef __USE_GNU
|
||||
/* Types of directory notifications that may be requested with F_NOTIFY. */
|
||||
# define DN_ACCESS 0x00000001 /* File accessed. */
|
||||
# define DN_MODIFY 0x00000002 /* File modified. */
|
||||
# define DN_CREATE 0x00000004 /* File created. */
|
||||
# define DN_DELETE 0x00000008 /* File removed. */
|
||||
# define DN_RENAME 0x00000010 /* File renamed. */
|
||||
# define DN_ATTRIB 0x00000020 /* File changed attibutes. */
|
||||
# define DN_MULTISHOT 0x80000000 /* Don't remove notifier. */
|
||||
#endif
|
||||
|
||||
/* Define some more compatibility macros to be backward compatible with
|
||||
BSD systems which did not managed to hide these kernel macros. */
|
||||
#ifdef __USE_BSD
|
||||
# define FAPPEND O_APPEND
|
||||
# define FFSYNC O_FSYNC
|
||||
# define FASYNC O_ASYNC
|
||||
# define FNONBLOCK O_NONBLOCK
|
||||
# define FNDELAY O_NDELAY
|
||||
#endif /* Use BSD. */
|
||||
|
||||
/* Advise to `posix_fadvise'. */
|
||||
#ifdef __USE_XOPEN2K
|
||||
# define POSIX_FADV_NORMAL 0 /* No further special treatment. */
|
||||
# define POSIX_FADV_RANDOM 1 /* Expect random page references. */
|
||||
# define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */
|
||||
# define POSIX_FADV_WILLNEED 3 /* Will need these pages. */
|
||||
# define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
|
||||
# define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __USE_GNU
|
||||
/* Flags for SYNC_FILE_RANGE. */
|
||||
# define SYNC_FILE_RANGE_WAIT_BEFORE 1 /* Wait upon writeout of all pages
|
||||
in the range before performing the
|
||||
write. */
|
||||
# define SYNC_FILE_RANGE_WRITE 2 /* Initiate writeout of all those
|
||||
dirty pages in the range which are
|
||||
not presently under writeback. */
|
||||
# define SYNC_FILE_RANGE_WAIT_AFTER 4 /* Wait upon writeout of all pages in
|
||||
the range after performing the
|
||||
write. */
|
||||
|
||||
/* Flags for SPLICE and VMSPLICE. */
|
||||
# define SPLICE_F_MOVE 1 /* Move pages instead of copying. */
|
||||
# define SPLICE_F_NONBLOCK 2 /* Don't block on the pipe splicing
|
||||
(but we may still block on the fd
|
||||
we splice from/to). */
|
||||
# define SPLICE_F_MORE 4 /* Expect more data. */
|
||||
# define SPLICE_F_GIFT 8 /* Pages passed in are a gift. */
|
||||
#endif
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
#ifdef __USE_GNU
|
||||
|
||||
/* Provide kernel hint to read ahead. */
|
||||
extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
|
||||
__THROW;
|
||||
|
||||
|
||||
/* Selective file content synch'ing. */
|
||||
extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
|
||||
unsigned int __flags);
|
||||
|
||||
|
||||
/* Splice address range into a pipe. */
|
||||
extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
||||
size_t __count, unsigned int __flags);
|
||||
|
||||
/* Splice two files together. */
|
||||
extern ssize_t splice (int __fdin, __off64_t *__offin, int __fdout,
|
||||
__off64_t *__offout, size_t __len,
|
||||
unsigned int __flags);
|
||||
|
||||
/* In-kernel implementation of tee for pipe buffers. */
|
||||
extern ssize_t tee (int __fdin, int __fdout, size_t __len,
|
||||
unsigned int __flags);
|
||||
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
@ -0,0 +1,218 @@
|
||||
# -*- mode: makefile; coding: utf-8 -*-
|
||||
# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
|
||||
# Copyright © 2019 TDE Team
|
||||
# Description: A class for TDE packages; sets TDE environment variables, etc
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License as
|
||||
# published by the Free Software Foundation; either version 2, or (at
|
||||
# your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
# 02111-1307 USA.
|
||||
|
||||
ifndef _cdbs_bootstrap
|
||||
_cdbs_scripts_path ?= /usr/lib/cdbs
|
||||
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
|
||||
_cdbs_class_path ?= /usr/share/cdbs/1/class
|
||||
endif
|
||||
|
||||
ifndef _cdbs_class_debian-qt-kde
|
||||
_cdbs_class_debian-qt-kde := 1
|
||||
|
||||
# for dh_icons
|
||||
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
|
||||
|
||||
# Note: This _must_ be included before autotools.mk, or it won't work.
|
||||
common-configure-arch common-configure-indep:: debian/stamp-cvs-make
|
||||
debian/stamp-cvs-make:
|
||||
ifndef _cdbs_class_cmake
|
||||
cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
|
||||
cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
|
||||
endif
|
||||
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
|
||||
cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
|
||||
endif
|
||||
$(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
|
||||
endif
|
||||
touch debian/stamp-cvs-make
|
||||
|
||||
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
|
||||
|
||||
ifdef _cdbs_tarball_dir
|
||||
DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
|
||||
else
|
||||
DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
|
||||
endif
|
||||
|
||||
ifndef _cdbs_class_cmake
|
||||
include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
|
||||
endif
|
||||
|
||||
ifndef _cdbs_rules_patchsys_quilt
|
||||
DEB_PATCHDIRS := debian/patches/common debian/patches
|
||||
endif
|
||||
|
||||
export kde_cgidir = \$${libdir}/cgi-bin
|
||||
export kde_confdir = \$${sysconfdir}/trinity
|
||||
export kde_htmldir = \$${datadir}/doc/tde/HTML
|
||||
|
||||
DEB_KDE_ENABLE_FINAL := yes
|
||||
DEB_INSTALL_DOCS_ALL :=
|
||||
|
||||
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
|
||||
DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib/$(DEB_HOST_MULTIARCH))
|
||||
|
||||
DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
|
||||
DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
|
||||
DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
|
||||
|
||||
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
||||
cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
|
||||
ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
|
||||
cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
|
||||
else
|
||||
cdbs_kde_enable_final =
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
|
||||
cdbs_kde_enable_final =
|
||||
cdbs_kde_enable_debug = --enable-debug=yes
|
||||
else
|
||||
cdbs_kde_enable_debug = --disable-debug
|
||||
endif
|
||||
|
||||
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
|
||||
cdbs_kde_enable_debug = --enable-debug=full
|
||||
endif
|
||||
|
||||
DEB_BUILD_PARALLEL ?= true
|
||||
|
||||
cdbs_configure_flags += \
|
||||
--with-qt-dir=/usr/share/qt3 \
|
||||
--disable-rpath \
|
||||
--with-xinerama \
|
||||
$(cdbs_kde_enable_final) \
|
||||
$(cdbs_kde_enable_debug)
|
||||
|
||||
|
||||
# This is a convenience target for calling manually.
|
||||
# It's not part of the build process.
|
||||
buildprep: clean apply-patches
|
||||
ifndef _cdbs_class_cmake
|
||||
$(MAKE) -f admin/Makefile.common dist
|
||||
endif
|
||||
debian/rules clean
|
||||
|
||||
common-build-arch:: debian/stamp-man-pages
|
||||
debian/stamp-man-pages:
|
||||
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
|
||||
for f in $$(find debian/man -name '*.sgml'); do \
|
||||
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
|
||||
done
|
||||
for f in $$(find debian/man -name '*.man'); do \
|
||||
soelim -I debian/man $$f \
|
||||
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
|
||||
done
|
||||
touch debian/stamp-man-pages
|
||||
|
||||
common-binary-indep::
|
||||
( set -e; \
|
||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
||||
for p in $(DEB_INDEP_PACKAGES); do \
|
||||
cat $$tmpf >>debian/$$p.substvars; \
|
||||
done; \
|
||||
rm -f $$tmpf )
|
||||
|
||||
common-binary-arch::
|
||||
( set -e; \
|
||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
||||
for p in $(DEB_ARCH_PACKAGES); do \
|
||||
cat $$tmpf >>debian/$$p.substvars; \
|
||||
done; \
|
||||
rm -f $$tmpf )
|
||||
# update multi-arch path in install files
|
||||
ls -d debian/* | \
|
||||
grep -E "(install|links)$$" | \
|
||||
while read a; do \
|
||||
[ -d $$a ] || [ -f $$a.arch ] || \
|
||||
! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
|
||||
sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
|
||||
done
|
||||
|
||||
clean::
|
||||
rm -rf debian/man/out
|
||||
-rmdir debian/man
|
||||
rm -f debian/stamp-man-pages
|
||||
rm -rf debian/shlibs-check
|
||||
# revert multi-arch path in install files
|
||||
ls -d debian/* | \
|
||||
grep -E "(install|links)$$" | \
|
||||
while read a; do \
|
||||
[ ! -f $$a.arch ] || \
|
||||
mv $$a.arch $$a; \
|
||||
done
|
||||
|
||||
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
|
||||
if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
|
||||
if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
|
||||
if test -e debian/$(cdbs_curpkg).lintian; then \
|
||||
install -p -D -m644 debian/$(cdbs_curpkg).lintian \
|
||||
debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
|
||||
fi
|
||||
if test -e debian/$(cdbs_curpkg).presubj; then \
|
||||
install -p -D -m644 debian/$(cdbs_curpkg).presubj \
|
||||
debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
|
||||
fi
|
||||
|
||||
binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
|
||||
set -e; \
|
||||
for doc in `cd $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en; find . -name index.docbook`; do \
|
||||
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
|
||||
echo Building $$pkg HTML docs...; \
|
||||
mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
|
||||
cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
|
||||
/usr/bin/meinproc $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en/$$pkg/index.docbook; \
|
||||
done
|
||||
for pkg in $(DOC_HTML_PRUNE) ; do \
|
||||
rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
|
||||
done
|
||||
|
||||
common-build-indep:: debian/stamp-kde-apidox
|
||||
debian/stamp-kde-apidox:
|
||||
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
|
||||
touch $@
|
||||
|
||||
common-install-indep:: common-install-kde-apidox
|
||||
common-install-kde-apidox::
|
||||
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR))
|
||||
|
||||
cleanbuilddir::
|
||||
-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
|
||||
|
||||
clean::
|
||||
ifndef _cdbs_class_cmake
|
||||
if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
|
||||
cd $(DEB_SRCDIR); \
|
||||
find . -name Makefile.in -print | \
|
||||
xargs --no-run-if-empty rm -f; \
|
||||
rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
|
||||
configure configure.files configure.in stamp-h.in \
|
||||
subdirs; \
|
||||
fi
|
||||
endif
|
||||
rm -f debian/stamp-kde-apidox
|
||||
rm -f debian/stamp-cvs-make
|
||||
|
||||
endif
|
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
|
||||
my ($version3, $version3_next);
|
||||
my ($version2, $version2_next);
|
||||
|
||||
($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
|
||||
($version2 = $version3) =~ s/\.[^.]+$//;
|
||||
|
||||
($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
|
||||
($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
|
||||
|
||||
print "TDE-Version3=$version3\n";
|
||||
print "TDE-Version2=$version2\n";
|
||||
print "TDE-Next-Version3=$version3_next\n";
|
||||
print "TDE-Next-Version2=$version2_next\n";
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
||||
9
|
@ -0,0 +1,698 @@
|
||||
Source: tdepim-trinity
|
||||
Section: tde
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
|
||||
Uploaders: Ana Beatriz Guerrero Lopez <ana@debian.org>, Josh Metzler <joshdeb@metzlers.org>, Sune Vuorela <debian@pusling.com>
|
||||
Build-Depends: libasound2-dev [!solaris-any], cdbs (>= 0.4.39-0.1), debhelper (>= 7.0.50~), quilt,
|
||||
cdparanoia, gawk, tdelibs14-trinity-dev, bison, byacc, bzip2,
|
||||
flex, groff-base, libogg-dev,
|
||||
libboost-dev (>= 1.33.1), libgpgme11-dev | libgpgme-dev (>= 1.0~),
|
||||
libreadline-dev | libreadline6-dev | libreadline5-dev, libsasl2-dev, libssl-dev,
|
||||
libxpm-dev, libxss-dev, sharutils, texinfo, dpkg-dev (>= 1.14.4),
|
||||
libgpg-error-dev (>= 1.4-2), gpgsm, libical-dev,
|
||||
libcaldav-dev (>= 0.6.5), libcarddav-dev (>= 0.6.2), libcurl4-gnutls-dev,
|
||||
cmake, libtool, libltdl-dev
|
||||
Build-Depends-Indep: doxygen, graphviz, gsfonts-x11, libtqtinterface-doc, tdelibs14-trinity-doc
|
||||
Build-Conflicts: libkleopatra0-trinity-dev
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: tdepim-trinity
|
||||
Section: tde
|
||||
Architecture: all
|
||||
Replaces: kdepim-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdepim-trinity (<< 4:14.0.0~)
|
||||
Depends: akregator-trinity (>= ${source:Version}), kaddressbook-trinity (>= ${source:Version}), kalarm-trinity (>= ${source:Version}), kandy-trinity (>= ${source:Version}), karm-trinity (>= ${source:Version}), tdepim-tdefile-plugins-trinity (>= ${source:Version}), tdepim-tdeio-plugins-trinity (>= ${source:Version}), tdepim-tderesources-trinity (>= ${source:Version}), tdepim-wizards-trinity (>= ${source:Version}), kleopatra-trinity (>= ${source:Version}), kmail-trinity (>= ${source:Version}), kmailcvt-trinity (>= ${source:Version}), knode-trinity (>= ${source:Version}), knotes-trinity (>= ${source:Version}), konsolekalendar-trinity (>= ${source:Version}), kontact-trinity (>= ${source:Version}), korganizer-trinity (>= ${source:Version}), korn-trinity (>= ${source:Version}), ktnef-trinity (>= ${source:Version}), libindex0-trinity (>= ${source:Version}), libtdepim1a-trinity (>= ${source:Version}), libkgantt0-trinity (>= ${source:Version}), libkleopatra1-trinity (>= ${source:Version}), libkpimexchange1-trinity (>= ${source:Version}), libkpimidentities1-trinity (>= ${source:Version}), libksieve0-trinity (>= ${source:Version}), libktnef1-trinity (>= ${source:Version}), libmimelib1c2a-trinity (>= ${source:Version})
|
||||
Suggests: tdepim-trinity-doc-html
|
||||
Description: Personal Information Management apps from the official Trinity release
|
||||
TDE (the Trinity Desktop Environment) is a powerful Open Source graphical
|
||||
desktop environment for Unix workstations. It combines ease of use,
|
||||
contemporary functionality, and outstanding graphical design with the
|
||||
technological superiority of the Unix operating system.
|
||||
.
|
||||
This metapackage includes a collection of Personal Information Management
|
||||
(PIM) applications provided with the official release of Trinity.
|
||||
.
|
||||
Homepage: http://pim.kde.org/
|
||||
|
||||
Package: tdepim-trinity-dbg
|
||||
Priority: extra
|
||||
Section: libdevel
|
||||
Replaces: kdepim-trinity-dbg (<< 4:14.0.0~)
|
||||
Breaks: kdepim-trinity-dbg (<< 4:14.0.0~)
|
||||
Depends: tdelibs-trinity-dbg
|
||||
Architecture: linux-any
|
||||
Description: debugging symbols for tdepim-trinity
|
||||
This package contains the debugging symbols associated with tdepim-trinity.
|
||||
They will automatically be used by gdb for debugging tdepim-related
|
||||
issues.
|
||||
|
||||
Package: tdepim-trinity-dev
|
||||
Section: devel
|
||||
Architecture: any
|
||||
Replaces: kdepim-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: kdepim-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: kaddressbook-trinity (= ${source:Version}),
|
||||
kalarm-trinity (= ${source:Version}),
|
||||
tdepim-tderesources-trinity (= ${source:Version}),
|
||||
kmail-trinity (= ${source:Version}),
|
||||
knotes-trinity (= ${source:Version}),
|
||||
kontact-trinity (= ${source:Version}),
|
||||
korganizer-trinity (= ${source:Version}),
|
||||
libkpimidentities1-trinity (= ${source:Version}),
|
||||
libical-dev,
|
||||
libtdepim1-trinity-dev (= ${source:Version}),
|
||||
libkgantt0-trinity-dev (= ${source:Version}),
|
||||
libkleopatra1-trinity-dev (= ${source:Version}),
|
||||
libkpimexchange1-trinity-dev (= ${source:Version}),
|
||||
libksieve0-trinity-dev (= ${source:Version}),
|
||||
libktnef1-trinity-dev (= ${source:Version}),
|
||||
libmimelib1-trinity-dev (= ${source:Version})
|
||||
Description: TDE Personal Information Management [development]
|
||||
This package contains development files needed to compile tdepim applications.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://pim.kde.org/
|
||||
|
||||
Package: tdepim-trinity-doc
|
||||
Section: doc
|
||||
Architecture: all
|
||||
Replaces: kdepim-trinity-doc (<< 4:14.0.0~)
|
||||
Breaks: kdepim-trinity-doc (<< 4:14.0.0~)
|
||||
Suggests: konqueror-trinity | www-browser, doc-base
|
||||
Description: TDE Personal Information Management library documentation
|
||||
TDE core library documentation. You need this documentation to develop TDE PIM
|
||||
applications.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://pim.kde.org/
|
||||
|
||||
Package: tdepim-trinity-doc-html
|
||||
Section: doc
|
||||
Architecture: all
|
||||
Replaces: kdepim-trinity-doc-html (<< 4:14.0.0~)
|
||||
Breaks: kdepim-trinity-doc-html (<< 4:14.0.0~)
|
||||
Suggests: konqueror-trinity | www-browser, tdepim-trinity
|
||||
Description: TDE PIM documentation in HTML format
|
||||
By default the Personal Information Management applications provided with
|
||||
TDE only provide their documentation in TDE docbook format, which can only
|
||||
be read by Konqueror or KHelpCenter. This package provides all of the
|
||||
TDE PIM documentation converted to HTML format so it can be read with any
|
||||
web browser.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://pim.kde.org/
|
||||
|
||||
Package: akregator-trinity
|
||||
Section: web
|
||||
Architecture: any
|
||||
Replaces: akregator-trinity (<< 4:14.0.0~)
|
||||
Breaks: akregator-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: RSS feed aggregator for TDE
|
||||
aKregator is a fast, lightweight, and intuitive feed reader program
|
||||
for TDE. It allows you to quickly browse through hundreds of
|
||||
thousands of internet feeds in a quick, efficient, and familiar way.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://akregator.kde.org/
|
||||
|
||||
Package: kaddressbook-trinity
|
||||
Section: utils
|
||||
Architecture: any
|
||||
Replaces: kaddressbook-trinity (<< 4:14.0.0~)
|
||||
Breaks: kaddressbook-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: tdepim-tderesources-trinity, tdebase-tdeio-plugins-trinity
|
||||
Description: TDE NG addressbook application
|
||||
KAddressBook is the main address book application for TDE; it enables you
|
||||
to manage your contacts efficiently and comfortably. It can load and save
|
||||
your contacts to many different locations, including the local file system,
|
||||
LDAP servers, and SQL databases.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kalarm-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kalarm-trinity (<< 4:14.0.0~)
|
||||
Breaks: kalarm-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: kmix-trinity, kttsd-trinity
|
||||
Description: Trinity alarm message, command and email scheduler
|
||||
KAlarm provides a graphical interface to schedule personal timed events -
|
||||
pop-up alarm messages, command execution and sending emails. There is a
|
||||
range of options for configuring recurring events.
|
||||
.
|
||||
A pop-up alarm can show either a simple text message, or the contents of a
|
||||
text or image file, It can optionally be spoken, or play a sound file. You
|
||||
can choose its appearance, and set reminders. Among KAlarm's other
|
||||
facilities, you can set up templates to allow KAlarm to be used as a 'tea
|
||||
timer'.
|
||||
.
|
||||
As an alternative to using the graphical interface, alarms can be scheduled
|
||||
from the command line or via DCOP calls from other programs. KAlarm is
|
||||
TDE-based, but will also run on other desktops.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kandy-trinity
|
||||
Section: utils
|
||||
Architecture: any
|
||||
Replaces: kandy-trinity (<< 4:14.0.0~)
|
||||
Breaks: kandy-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity mobile phone utility
|
||||
At the moment Kandy is more or less a terminal program with some special
|
||||
features to store commands and their parameters, but is also has a simple GUI
|
||||
to access the phone book of a mobile phone and it is able to save this phone
|
||||
book to the TDE address book.
|
||||
.
|
||||
Kandy is aimed at mobile phones with integrated (GSM) modems.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: karm-trinity
|
||||
Section: utils
|
||||
Architecture: any
|
||||
Replaces: karm-trinity (<< 4:14.0.0~)
|
||||
Breaks: karm-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity time tracker tool
|
||||
KArm is a time tracker for busy people who need to keep track of the amount of
|
||||
time they spend on various tasks.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: tdepim-tdefile-plugins-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdepim-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdepim-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: TDE File dialog plugins for palm and vcf files
|
||||
File dialog plugins for palm and vcf files.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: tdepim-tdeio-plugins-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdepim-kio-plugins-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdepim-kio-plugins-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity pim I/O Slaves
|
||||
This package includes the pim tdeioslaves. This includes imap4, sieve,
|
||||
and mbox.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: tdepim-tderesources-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdepim-kresources-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdepim-kresources-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: ${shlibs:Recommends}, korganizer-trinity
|
||||
Suggests: knotes-trinity
|
||||
Description: Trinity pim resource plugins
|
||||
This package includes several plugins needed to interface with groupware
|
||||
servers. It also includes plugins for features such as blogging and
|
||||
tracking feature plans.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: tdepim-wizards-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdepim-wizards-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdepim-wizards-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: egroupware
|
||||
Description: Trinity server configuration wizards
|
||||
This package contains TDE-based wizards for configuring eGroupware,
|
||||
Kolab, and SUSE Linux Openexchange servers.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kleopatra-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kleopatra-trinity (<< 4:14.0.0~)
|
||||
Breaks: kleopatra-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, gnupg-agent, gnupg2, gpgsm, dirmngr, pinentry-qt | pinentry-x11
|
||||
Description: Trinity Certificate Manager
|
||||
Kleopatra is the TDE tool for managing X.509 certificates in the gpgsm
|
||||
keybox and for retrieving certificates from LDAP servers.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kmail-trinity
|
||||
Section: mail
|
||||
Architecture: any
|
||||
Replaces: kmail-trinity (<< 4:14.0.0~)
|
||||
Breaks: kmail-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, ${perl:Depends}, tdepim-tdeio-plugins-trinity, tdebase-tdeio-plugins-trinity, gpgsm, gnupg-agent, pinentry-qt | pinentry-x11
|
||||
Suggests: gnupg, gnupg-agent, pinentry-qt | pinentry-x11, kaddressbook-trinity, kleopatra-trinity, spamassassin | bogofilter | annoyance-filter | spambayes | bsfilter | crm114, clamav | f-prot-installer, procmail
|
||||
Provides: imap-client, mail-reader
|
||||
Description: Trinity Email client
|
||||
KMail is a fully-featured email client that fits nicely into the TDE
|
||||
desktop. It has features such as support for IMAP, POP3, multiple accounts,
|
||||
mail filtering and sorting, PGP/GnuPG privacy, and inline attachments.
|
||||
.
|
||||
You need to install tdepim-tdeio-plugins if you want to use IMAP or
|
||||
mbox files, and/or tdebase-tdeio-plugins if you want to use POP3.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://kmail.kde.org/
|
||||
|
||||
Package: kmailcvt-trinity
|
||||
Section: mail
|
||||
Architecture: any
|
||||
Replaces: kmailcvt-trinity (<< 4:14.0.0~)
|
||||
Breaks: kmailcvt-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, kmail-trinity
|
||||
Description: Trinity KMail mail folder converter
|
||||
Converts mail folders to KMail format. Formats supported for import
|
||||
include Outlook Express, Evolution, and plain mbox.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: knode-trinity
|
||||
Section: news
|
||||
Architecture: any
|
||||
Replaces: knode-trinity (<< 4:14.0.0~)
|
||||
Breaks: knode-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Provides: news-reader
|
||||
Description: Trinity news reader
|
||||
KNode is an easy-to-use, convenient newsreader. It is intended to be usable
|
||||
by inexperienced users, but also includes support for such features as
|
||||
MIME attachments, article scoring, and creating and verifying GnuPG
|
||||
signatures.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: knotes-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: knotes-trinity (<< 4:14.0.0~)
|
||||
Breaks: knotes-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: tdepim-tderesources-trinity
|
||||
Description: Trinity sticky notes
|
||||
KNotes is a program that lets you write sticky notes. The notes are saved
|
||||
automatically when you exit the program, and they display when you open the
|
||||
program. The program supports printing and mailing your notes.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kode-trinity
|
||||
Section: devel
|
||||
Architecture: any
|
||||
Replaces: kode-trinity (<< 4:14.0.0~)
|
||||
Breaks: kode-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Helper library for programmatic generation of C++ code
|
||||
This package includes a program kode for generation of C++ template files
|
||||
and kxml_compiler for generation of C++ classes representing XML data
|
||||
described by RelaxNG schemes.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: konsolekalendar-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: konsolekalendar-trinity (<< 4:14.0.0~)
|
||||
Breaks: konsolekalendar-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity konsole personal organizer
|
||||
KonsoleKalendar is a command-line interface to TDE calendars.
|
||||
Konsolekalendar complements the TDE KOrganizer by providing a console
|
||||
frontend to manage your calendars.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: kontact-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kontact-trinity (<< 4:14.0.0~)
|
||||
Breaks: kontact-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, kmail-trinity, korganizer-trinity, kaddressbook-trinity
|
||||
Recommends: ${shlibs:Recommends}, kmail-trinity, knode-trinity, knotes-trinity
|
||||
Suggests: ${shlibs:Suggests}, akregator-trinity, knewsticker-trinity, kweather-trinity, gnokii
|
||||
Conflicts: akregator-kontact-plugin-trinity
|
||||
Description: Trinity pim application
|
||||
Kontact is the integrated solution to your personal information management
|
||||
needs. It combines TDE applications like KMail, KOrganizer, and
|
||||
KAddressBook into a single interface to provide easy access to mail,
|
||||
scheduling, address book and other PIM functionality.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://kontact.kde.org/
|
||||
|
||||
Package: korganizer-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: korganizer-trinity (<< 4:14.0.0~)
|
||||
Breaks: korganizer-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, ${perl:Depends}
|
||||
Recommends: kghostview-trinity
|
||||
Description: Trinity personal organizer
|
||||
This package contains KOrganizer, a calendar and scheduling program.
|
||||
.
|
||||
KOrganizer aims to be a complete program for organizing appointments,
|
||||
contacts, projects, etc. KOrganizer natively supports information interchange
|
||||
with other calendar applications, through the industry standard vCalendar
|
||||
personal data interchange file format. This eases the move from other
|
||||
modern PIMs to KOrganizer.
|
||||
.
|
||||
KOrganizer offers full synchronization with Palm Pilots, if kpilot is
|
||||
installed.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: korn-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: korn-trinity (<< 4:14.0.0~)
|
||||
Breaks: korn-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, tdepim-tdeio-plugins-trinity, tdebase-tdeio-plugins-trinity
|
||||
Description: Trinity mail checker
|
||||
Korn is a TDE mail checker that can display a small summary in the Kicker
|
||||
tray. It supports checking mbox, pop3, imap4, and nntp sources.
|
||||
.
|
||||
Once mail is received you can have Korn run a third party program or change
|
||||
the color/icon of the Kicker display. In addition to this you can have
|
||||
Korn run a program once you click on the docked icon in Kicker.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: ktnef-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: ktnef-trinity (<< 4:14.0.0~)
|
||||
Breaks: ktnef-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity TNEF viewer
|
||||
The TNEF File Viewer allows you to handle mail attachments using the TNEF
|
||||
format. These attachments are usually found in mails coming from Microsoft
|
||||
mail servers and embed the mail properties as well as the actual attachments.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libindex0-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libindex0-trinity (<< 4:14.0.0~)
|
||||
Breaks: libindex0-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity indexing library
|
||||
This library provides text indexing and is currently used by KMail
|
||||
to implement fast searches in mail bodies.
|
||||
.
|
||||
This is the runtime package for programs that use the libindex-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libindex0-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libindex0-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libindex0-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libindex0-trinity (= ${source:Version})
|
||||
Description: Trinity indexing library [development]
|
||||
This library provides text indexing and is currently used by KMail
|
||||
to implement searching through mail text.
|
||||
.
|
||||
This is the development package which contains the headers for the libindex-trinity
|
||||
library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libtdepim1a-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Provides: libkcal2b-trinity
|
||||
Replaces: libkdepim1a-trinity (<< 4:14.0.0~), libkcal2b-trinity
|
||||
Breaks: libkdepim1a-trinity (<< 4:14.0.0~)
|
||||
Conflicts: libkcal2-trinity, libkcal2a-trinity, libkcal2b-trinity
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: tdepim-tderesources-trinity
|
||||
Description: Trinity PIM library
|
||||
This is the runtime package for programs that use the libtdepim-trinity library.
|
||||
This package also provides a C++ API for handling the vCalendar and iCalendar
|
||||
formats (libkcal-trinity).
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libtdepim1-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Provides: libkcal2-trinity-dev
|
||||
Replaces: libkdepim1-trinity-dev (<< 4:14.0.0~), libkcal2-trinity-dev
|
||||
Breaks: libkdepim1-trinity-dev (<< 4:14.0.0~)
|
||||
Conflicts: libkcal2-trinity-dev
|
||||
Depends: libtdepim1a-trinity (= ${source:Version}), tdelibs14-trinity-dev
|
||||
Description: Trinity PIM library [development]
|
||||
This is the development package which contains the headers for the libtdepim-trinity
|
||||
library and libkcal-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkgantt0-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libkgantt0-trinity (<< 4:14.0.0~)
|
||||
Breaks: libkgantt0-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity gantt charting library
|
||||
This is the runtime package for programs that use the libkgantt-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkgantt0-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libkgantt0-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libkgantt0-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libkgantt0-trinity (= ${source:Version}), libtdepim1-trinity-dev (= ${source:Version})
|
||||
Description: Trinity gantt charting library [development]
|
||||
This is the development package which contains the headers for the libkgantt-trinity
|
||||
library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkleopatra1-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libkleopatra1-trinity (<< 4:14.0.0~)
|
||||
Breaks: libkleopatra1-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, ${perl:Depends}, gnupg
|
||||
Conflicts: libkleopatra0-trinity
|
||||
Description: TDE GnuPG interface libraries
|
||||
This library is used by several TDE applications to interface to the
|
||||
GnuPG program.
|
||||
.
|
||||
This is the runtime package for programs that use the libkleopatra-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkleopatra1-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libkleopatra1-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libkleopatra1-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libkleopatra1-trinity (= ${source:Version}), libtdepim1-trinity-dev (= ${source:Version})
|
||||
Conflicts: libkleopatra0-trinity-dev
|
||||
Description: Trinity GnuPG interface libraries [development]
|
||||
This library is used by several TDE applications to interface to the
|
||||
GnuPG program.
|
||||
.
|
||||
This is the development package which contains the headers for the
|
||||
libkleopatra-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkmime2-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libkmime2-trinity (<< 4:14.0.0~)
|
||||
Breaks: libkmime2-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Conflicts: libmimelib1a-trinity
|
||||
Description: Trinity MIME interface library
|
||||
This library provides a C++ interface to MIME messages, parsing them into
|
||||
an object tree.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkpimexchange1-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libkpimexchange1-trinity (<< 4:14.0.0~)
|
||||
Breaks: libkpimexchange1-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity PIM Exchange library
|
||||
This is the runtime package for programs that use the libkpimexchange-trinity
|
||||
library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkpimexchange1-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libkpimexchange1-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libkpimexchange1-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libkpimexchange1-trinity (= ${source:Version}), libtdepim1-trinity-dev (= ${source:Version})
|
||||
Description: Trinity PIM Exchange library [development]
|
||||
This is the development package which contains the headers for the
|
||||
libkpimexchange-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libkpimidentities1-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libkpimidentities1-trinity (<< 4:14.0.0~)
|
||||
Breaks: libkpimidentities1-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity PIM user identity information library
|
||||
This library provides information to TDE programs about user identity,
|
||||
such as email address, organization, etc.
|
||||
.
|
||||
This is the runtime package for programs that use the libkpimidentities-trinity
|
||||
library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libksieve0-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libksieve0-trinity (<< 4:14.0.0~)
|
||||
Breaks: libksieve0-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity mail/news message filtering library
|
||||
This is the runtime package for programs that use the libksieve-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libksieve0-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libksieve0-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libksieve0-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libksieve0-trinity (= ${source:Version}), libtdepim1-trinity-dev (= ${source:Version})
|
||||
Description: Trinity mail/news message filtering library [development]
|
||||
This is the development package which contains the headers for the libksieve-trinity
|
||||
library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libktnef1-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libktnef1-trinity (<< 4:14.0.0~)
|
||||
Breaks: libktnef1-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Library for handling KTNEF email attachments
|
||||
This library handles mail attachments using the TNEF format. These
|
||||
attachments are usually found in mails coming from Microsoft mail
|
||||
servers and embed the mail properties as well as the actual
|
||||
attachments.
|
||||
.
|
||||
This is the runtime library for packages using the ktnef-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libktnef1-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libktnef1-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libktnef1-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libktnef1-trinity (= ${source:Version}), libtdepim1-trinity-dev (= ${source:Version})
|
||||
Description: KTNEF handler library [development]
|
||||
This library handles mail attachments using the TNEF format. These
|
||||
attachments are usually found in mails coming from Microsoft mail
|
||||
servers and embed the mail properties as well as the actual
|
||||
attachments.
|
||||
.
|
||||
This is the development package which contains the headers for the
|
||||
ktnef-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libmimelib1c2a-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: libmimelib1c2a-trinity (<< 4:14.0.0~)
|
||||
Breaks: libmimelib1c2a-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Conflicts: libmimelib1a-trinity
|
||||
Description: Trinity mime library
|
||||
This library is used by several Trinity applications to handle mime types.
|
||||
.
|
||||
This is the runtime package for programs that use the libmimelib-trinity library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
||||
|
||||
Package: libmimelib1-trinity-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Replaces: libmimelib1-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: libmimelib1-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: libmimelib1c2a-trinity (= ${source:Version})
|
||||
Description: Trinity mime library [development]
|
||||
This library is used by several TDE applications to handle mime types.
|
||||
.
|
||||
This is the development package which contains the headers for the
|
||||
libmimelib library.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE PIM module.
|
||||
See the 'tde-trinity' and 'tdepim-trinity' packages for more information.
|
@ -0,0 +1,437 @@
|
||||
This package was debianized by Christopher L Cheney <ccheney@debian.org> on
|
||||
Tue, 16 Apr 2002 22:00:00 -0500.
|
||||
|
||||
It was downloaded from: http://www.kde.org/download
|
||||
|
||||
Upstream Authors: Rik Hemsley <rik@kde.org>
|
||||
and many others...
|
||||
|
||||
Copyright:
|
||||
|
||||
All programs are either under the Artistic, BSD, or GPL licenses, see below
|
||||
for details on the respective applications and additions to BSD-derivative
|
||||
licenses.
|
||||
|
||||
On Debian systems, the complete text of these licenses can be found in:
|
||||
|
||||
/usr/share/common-licenses/Artistic
|
||||
/usr/share/common-licenses/BSD
|
||||
/usr/share/common-licenses/GPL
|
||||
|
||||
The kdocbook documentation for the applications is under the GFDL
|
||||
license. The complete text of this license is included below.
|
||||
|
||||
When in doubt, check the individual file, they should all have license
|
||||
headings and other identifying marks.
|
||||
|
||||
akregator, kaddressbook, kalarm, kalarmd, kandy, karm, kdgantt,
|
||||
tdefile-plugins, kgantt, tdeioslaves, kleopatra, kmail,
|
||||
kmailcvt, knode, knotes, konsolekalendar, kontact, korganizer, kpilot,
|
||||
ksync, ktnef, libindex, libtdenetwork, libtdepim, libkleopatra,
|
||||
libkpimidentities, libksieve, mimelib, wizards
|
||||
----------------------------------------------------------------------------
|
||||
GPL
|
||||
|
||||
|
||||
libical, libkcal, libkpimexchange
|
||||
------------------------
|
||||
LGPL
|
||||
|
||||
|
||||
GNU Free Documentation License
|
||||
Version 1.2, November 2002
|
||||
|
||||
|
||||
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
0. PREAMBLE
|
||||
|
||||
The purpose of this License is to make a manual, textbook, or other
|
||||
functional and useful document "free" in the sense of freedom: to
|
||||
assure everyone the effective freedom to copy and redistribute it,
|
||||
with or without modifying it, either commercially or noncommercially.
|
||||
Secondarily, this License preserves for the author and publisher a way
|
||||
to get credit for their work, while not being considered responsible
|
||||
for modifications made by others.
|
||||
|
||||
This License is a kind of "copyleft", which means that derivative
|
||||
works of the document must themselves be free in the same sense. It
|
||||
complements the GNU General Public License, which is a copyleft
|
||||
license designed for free software.
|
||||
|
||||
We have designed this License in order to use it for manuals for free
|
||||
software, because free software needs free documentation: a free
|
||||
program should come with manuals providing the same freedoms that the
|
||||
software does. But this License is not limited to software manuals;
|
||||
it can be used for any textual work, regardless of subject matter or
|
||||
whether it is published as a printed book. We recommend this License
|
||||
principally for works whose purpose is instruction or reference.
|
||||
|
||||
|
||||
1. APPLICABILITY AND DEFINITIONS
|
||||
|
||||
This License applies to any manual or other work, in any medium, that
|
||||
contains a notice placed by the copyright holder saying it can be
|
||||
distributed under the terms of this License. Such a notice grants a
|
||||
world-wide, royalty-free license, unlimited in duration, to use that
|
||||
work under the conditions stated herein. The "Document", below,
|
||||
refers to any such manual or work. Any member of the public is a
|
||||
licensee, and is addressed as "you". You accept the license if you
|
||||
copy, modify or distribute the work in a way requiring permission
|
||||
under copyright law.
|
||||
|
||||
A "Modified Version" of the Document means any work containing the
|
||||
Document or a portion of it, either copied verbatim, or with
|
||||
modifications and/or translated into another language.
|
||||
|
||||
A "Secondary Section" is a named appendix or a front-matter section of
|
||||
the Document that deals exclusively with the relationship of the
|
||||
publishers or authors of the Document to the Document's overall subject
|
||||
(or to related matters) and contains nothing that could fall directly
|
||||
within that overall subject. (Thus, if the Document is in part a
|
||||
textbook of mathematics, a Secondary Section may not explain any
|
||||
mathematics.) The relationship could be a matter of historical
|
||||
connection with the subject or with related matters, or of legal,
|
||||
commercial, philosophical, ethical or political position regarding
|
||||
them.
|
||||
|
||||
The "Invariant Sections" are certain Secondary Sections whose titles
|
||||
are designated, as being those of Invariant Sections, in the notice
|
||||
that says that the Document is released under this License. If a
|
||||
section does not fit the above definition of Secondary then it is not
|
||||
allowed to be designated as Invariant. The Document may contain zero
|
||||
Invariant Sections. If the Document does not identify any Invariant
|
||||
Sections then there are none.
|
||||
|
||||
The "Cover Texts" are certain short passages of text that are listed,
|
||||
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
|
||||
the Document is released under this License. A Front-Cover Text may
|
||||
be at most 5 words, and a Back-Cover Text may be at most 25 words.
|
||||
|
||||
A "Transparent" copy of the Document means a machine-readable copy,
|
||||
represented in a format whose specification is available to the
|
||||
general public, that is suitable for revising the document
|
||||
straightforwardly with generic text editors or (for images composed of
|
||||
pixels) generic paint programs or (for drawings) some widely available
|
||||
drawing editor, and that is suitable for input to text formatters or
|
||||
for automatic translation to a variety of formats suitable for input
|
||||
to text formatters. A copy made in an otherwise Transparent file
|
||||
format whose markup, or absence of markup, has been arranged to thwart
|
||||
or discourage subsequent modification by readers is not Transparent.
|
||||
An image format is not Transparent if used for any substantial amount
|
||||
of text. A copy that is not "Transparent" is called "Opaque".
|
||||
|
||||
Examples of suitable formats for Transparent copies include plain
|
||||
ASCII without markup, Texinfo input format, LaTeX input format, SGML
|
||||
or XML using a publicly available DTD, and standard-conforming simple
|
||||
HTML, PostScript or PDF designed for human modification. Examples of
|
||||
transparent image formats include PNG, XCF and JPG. Opaque formats
|
||||
include proprietary formats that can be read and edited only by
|
||||
proprietary word processors, SGML or XML for which the DTD and/or
|
||||
processing tools are not generally available, and the
|
||||
machine-generated HTML, PostScript or PDF produced by some word
|
||||
processors for output purposes only.
|
||||
|
||||
The "Title Page" means, for a printed book, the title page itself,
|
||||
plus such following pages as are needed to hold, legibly, the material
|
||||
this License requires to appear in the title page. For works in
|
||||
formats which do not have any title page as such, "Title Page" means
|
||||
the text near the most prominent appearance of the work's title,
|
||||
preceding the beginning of the body of the text.
|
||||
|
||||
A section "Entitled XYZ" means a named subunit of the Document whose
|
||||
title either is precisely XYZ or contains XYZ in parentheses following
|
||||
text that translates XYZ in another language. (Here XYZ stands for a
|
||||
specific section name mentioned below, such as "Acknowledgements",
|
||||
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
|
||||
of such a section when you modify the Document means that it remains a
|
||||
section "Entitled XYZ" according to this definition.
|
||||
|
||||
The Document may include Warranty Disclaimers next to the notice which
|
||||
states that this License applies to the Document. These Warranty
|
||||
Disclaimers are considered to be included by reference in this
|
||||
License, but only as regards disclaiming warranties: any other
|
||||
implication that these Warranty Disclaimers may have is void and has
|
||||
no effect on the meaning of this License.
|
||||
|
||||
|
||||
2. VERBATIM COPYING
|
||||
|
||||
You may copy and distribute the Document in any medium, either
|
||||
commercially or noncommercially, provided that this License, the
|
||||
copyright notices, and the license notice saying this License applies
|
||||
to the Document are reproduced in all copies, and that you add no other
|
||||
conditions whatsoever to those of this License. You may not use
|
||||
technical measures to obstruct or control the reading or further
|
||||
copying of the copies you make or distribute. However, you may accept
|
||||
compensation in exchange for copies. If you distribute a large enough
|
||||
number of copies you must also follow the conditions in section 3.
|
||||
|
||||
You may also lend copies, under the same conditions stated above, and
|
||||
you may publicly display copies.
|
||||
|
||||
|
||||
3. COPYING IN QUANTITY
|
||||
|
||||
If you publish printed copies (or copies in media that commonly have
|
||||
printed covers) of the Document, numbering more than 100, and the
|
||||
Document's license notice requires Cover Texts, you must enclose the
|
||||
copies in covers that carry, clearly and legibly, all these Cover
|
||||
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
|
||||
the back cover. Both covers must also clearly and legibly identify
|
||||
you as the publisher of these copies. The front cover must present
|
||||
the full title with all words of the title equally prominent and
|
||||
visible. You may add other material on the covers in addition.
|
||||
Copying with changes limited to the covers, as long as they preserve
|
||||
the title of the Document and satisfy these conditions, can be treated
|
||||
as verbatim copying in other respects.
|
||||
|
||||
If the required texts for either cover are too voluminous to fit
|
||||
legibly, you should put the first ones listed (as many as fit
|
||||
reasonably) on the actual cover, and continue the rest onto adjacent
|
||||
pages.
|
||||
|
||||
If you publish or distribute Opaque copies of the Document numbering
|
||||
more than 100, you must either include a machine-readable Transparent
|
||||
copy along with each Opaque copy, or state in or with each Opaque copy
|
||||
a computer-network location from which the general network-using
|
||||
public has access to download using public-standard network protocols
|
||||
a complete Transparent copy of the Document, free of added material.
|
||||
If you use the latter option, you must take reasonably prudent steps,
|
||||
when you begin distribution of Opaque copies in quantity, to ensure
|
||||
that this Transparent copy will remain thus accessible at the stated
|
||||
location until at least one year after the last time you distribute an
|
||||
Opaque copy (directly or through your agents or retailers) of that
|
||||
edition to the public.
|
||||
|
||||
It is requested, but not required, that you contact the authors of the
|
||||
Document well before redistributing any large number of copies, to give
|
||||
them a chance to provide you with an updated version of the Document.
|
||||
|
||||
|
||||
4. MODIFICATIONS
|
||||
|
||||
You may copy and distribute a Modified Version of the Document under
|
||||
the conditions of sections 2 and 3 above, provided that you release
|
||||
the Modified Version under precisely this License, with the Modified
|
||||
Version filling the role of the Document, thus licensing distribution
|
||||
and modification of the Modified Version to whoever possesses a copy
|
||||
of it. In addition, you must do these things in the Modified Version:
|
||||
|
||||
A. Use in the Title Page (and on the covers, if any) a title distinct
|
||||
from that of the Document, and from those of previous versions
|
||||
(which should, if there were any, be listed in the History section
|
||||
of the Document). You may use the same title as a previous version
|
||||
if the original publisher of that version gives permission.
|
||||
B. List on the Title Page, as authors, one or more persons or entities
|
||||
responsible for authorship of the modifications in the Modified
|
||||
Version, together with at least five of the principal authors of the
|
||||
Document (all of its principal authors, if it has fewer than five),
|
||||
unless they release you from this requirement.
|
||||
C. State on the Title page the name of the publisher of the
|
||||
Modified Version, as the publisher.
|
||||
D. Preserve all the copyright notices of the Document.
|
||||
E. Add an appropriate copyright notice for your modifications
|
||||
adjacent to the other copyright notices.
|
||||
F. Include, immediately after the copyright notices, a license notice
|
||||
giving the public permission to use the Modified Version under the
|
||||
terms of this License, in the form shown in the Addendum below.
|
||||
G. Preserve in that license notice the full lists of Invariant Sections
|
||||
and required Cover Texts given in the Document's license notice.
|
||||
H. Include an unaltered copy of this License.
|
||||
I. Preserve the section Entitled "History", Preserve its Title, and add
|
||||
to it an item stating at least the title, year, new authors, and
|
||||
publisher of the Modified Version as given on the Title Page. If
|
||||
there is no section Entitled "History" in the Document, create one
|
||||
stating the title, year, authors, and publisher of the Document as
|
||||
given on its Title Page, then add an item describing the Modified
|
||||
Version as stated in the previous sentence.
|
||||
J. Preserve the network location, if any, given in the Document for
|
||||
public access to a Transparent copy of the Document, and likewise
|
||||
the network locations given in the Document for previous versions
|
||||
it was based on. These may be placed in the "History" section.
|
||||
You may omit a network location for a work that was published at
|
||||
least four years before the Document itself, or if the original
|
||||
publisher of the version it refers to gives permission.
|
||||
K. For any section Entitled "Acknowledgements" or "Dedications",
|
||||
Preserve the Title of the section, and preserve in the section all
|
||||
the substance and tone of each of the contributor acknowledgements
|
||||
and/or dedications given therein.
|
||||
L. Preserve all the Invariant Sections of the Document,
|
||||
unaltered in their text and in their titles. Section numbers
|
||||
or the equivalent are not considered part of the section titles.
|
||||
M. Delete any section Entitled "Endorsements". Such a section
|
||||
may not be included in the Modified Version.
|
||||
N. Do not retitle any existing section to be Entitled "Endorsements"
|
||||
or to conflict in title with any Invariant Section.
|
||||
O. Preserve any Warranty Disclaimers.
|
||||
|
||||
If the Modified Version includes new front-matter sections or
|
||||
appendices that qualify as Secondary Sections and contain no material
|
||||
copied from the Document, you may at your option designate some or all
|
||||
of these sections as invariant. To do this, add their titles to the
|
||||
list of Invariant Sections in the Modified Version's license notice.
|
||||
These titles must be distinct from any other section titles.
|
||||
|
||||
You may add a section Entitled "Endorsements", provided it contains
|
||||
nothing but endorsements of your Modified Version by various
|
||||
parties--for example, statements of peer review or that the text has
|
||||
been approved by an organization as the authoritative definition of a
|
||||
standard.
|
||||
|
||||
You may add a passage of up to five words as a Front-Cover Text, and a
|
||||
passage of up to 25 words as a Back-Cover Text, to the end of the list
|
||||
of Cover Texts in the Modified Version. Only one passage of
|
||||
Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||
through arrangements made by) any one entity. If the Document already
|
||||
includes a cover text for the same cover, previously added by you or
|
||||
by arrangement made by the same entity you are acting on behalf of,
|
||||
you may not add another; but you may replace the old one, on explicit
|
||||
permission from the previous publisher that added the old one.
|
||||
|
||||
The author(s) and publisher(s) of the Document do not by this License
|
||||
give permission to use their names for publicity for or to assert or
|
||||
imply endorsement of any Modified Version.
|
||||
|
||||
|
||||
5. COMBINING DOCUMENTS
|
||||
|
||||
You may combine the Document with other documents released under this
|
||||
License, under the terms defined in section 4 above for modified
|
||||
versions, provided that you include in the combination all of the
|
||||
Invariant Sections of all of the original documents, unmodified, and
|
||||
list them all as Invariant Sections of your combined work in its
|
||||
license notice, and that you preserve all their Warranty Disclaimers.
|
||||
|
||||
The combined work need only contain one copy of this License, and
|
||||
multiple identical Invariant Sections may be replaced with a single
|
||||
copy. If there are multiple Invariant Sections with the same name but
|
||||
different contents, make the title of each such section unique by
|
||||
adding at the end of it, in parentheses, the name of the original
|
||||
author or publisher of that section if known, or else a unique number.
|
||||
Make the same adjustment to the section titles in the list of
|
||||
Invariant Sections in the license notice of the combined work.
|
||||
|
||||
In the combination, you must combine any sections Entitled "History"
|
||||
in the various original documents, forming one section Entitled
|
||||
"History"; likewise combine any sections Entitled "Acknowledgements",
|
||||
and any sections Entitled "Dedications". You must delete all sections
|
||||
Entitled "Endorsements".
|
||||
|
||||
|
||||
6. COLLECTIONS OF DOCUMENTS
|
||||
|
||||
You may make a collection consisting of the Document and other documents
|
||||
released under this License, and replace the individual copies of this
|
||||
License in the various documents with a single copy that is included in
|
||||
the collection, provided that you follow the rules of this License for
|
||||
verbatim copying of each of the documents in all other respects.
|
||||
|
||||
You may extract a single document from such a collection, and distribute
|
||||
it individually under this License, provided you insert a copy of this
|
||||
License into the extracted document, and follow this License in all
|
||||
other respects regarding verbatim copying of that document.
|
||||
|
||||
|
||||
7. AGGREGATION WITH INDEPENDENT WORKS
|
||||
|
||||
A compilation of the Document or its derivatives with other separate
|
||||
and independent documents or works, in or on a volume of a storage or
|
||||
distribution medium, is called an "aggregate" if the copyright
|
||||
resulting from the compilation is not used to limit the legal rights
|
||||
of the compilation's users beyond what the individual works permit.
|
||||
When the Document is included in an aggregate, this License does not
|
||||
apply to the other works in the aggregate which are not themselves
|
||||
derivative works of the Document.
|
||||
|
||||
If the Cover Text requirement of section 3 is applicable to these
|
||||
copies of the Document, then if the Document is less than one half of
|
||||
the entire aggregate, the Document's Cover Texts may be placed on
|
||||
covers that bracket the Document within the aggregate, or the
|
||||
electronic equivalent of covers if the Document is in electronic form.
|
||||
Otherwise they must appear on printed covers that bracket the whole
|
||||
aggregate.
|
||||
|
||||
|
||||
8. TRANSLATION
|
||||
|
||||
Translation is considered a kind of modification, so you may
|
||||
distribute translations of the Document under the terms of section 4.
|
||||
Replacing Invariant Sections with translations requires special
|
||||
permission from their copyright holders, but you may include
|
||||
translations of some or all Invariant Sections in addition to the
|
||||
original versions of these Invariant Sections. You may include a
|
||||
translation of this License, and all the license notices in the
|
||||
Document, and any Warranty Disclaimers, provided that you also include
|
||||
the original English version of this License and the original versions
|
||||
of those notices and disclaimers. In case of a disagreement between
|
||||
the translation and the original version of this License or a notice
|
||||
or disclaimer, the original version will prevail.
|
||||
|
||||
If a section in the Document is Entitled "Acknowledgements",
|
||||
"Dedications", or "History", the requirement (section 4) to Preserve
|
||||
its Title (section 1) will typically require changing the actual
|
||||
title.
|
||||
|
||||
|
||||
9. TERMINATION
|
||||
|
||||
You may not copy, modify, sublicense, or distribute the Document except
|
||||
as expressly provided for under this License. Any other attempt to
|
||||
copy, modify, sublicense or distribute the Document is void, and will
|
||||
automatically terminate your rights under this License. However,
|
||||
parties who have received copies, or rights, from you under this
|
||||
License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
|
||||
10. FUTURE REVISIONS OF THIS LICENSE
|
||||
|
||||
The Free Software Foundation may publish new, revised versions
|
||||
of the GNU Free Documentation License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns. See
|
||||
http://www.gnu.org/copyleft/.
|
||||
|
||||
Each version of the License is given a distinguishing version number.
|
||||
If the Document specifies that a particular numbered version of this
|
||||
License "or any later version" applies to it, you have the option of
|
||||
following the terms and conditions either of that specified version or
|
||||
of any later version that has been published (not as a draft) by the
|
||||
Free Software Foundation. If the Document does not specify a version
|
||||
number of this License, you may choose any version ever published (not
|
||||
as a draft) by the Free Software Foundation.
|
||||
|
||||
|
||||
ADDENDUM: How to use this License for your documents
|
||||
|
||||
To use this License in a document you have written, include a copy of
|
||||
the License in the document and put the following copyright and
|
||||
license notices just after the title page:
|
||||
|
||||
Copyright (c) YEAR YOUR NAME.
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
under the terms of the GNU Free Documentation License, Version 1.2
|
||||
or any later version published by the Free Software Foundation;
|
||||
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||
Texts. A copy of the license is included in the section entitled
|
||||
"GNU Free Documentation License".
|
||||
|
||||
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
||||
replace the "with...Texts." line with this:
|
||||
|
||||
with the Invariant Sections being LIST THEIR TITLES, with the
|
||||
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
|
||||
|
||||
If you have Invariant Sections without Cover Texts, or some other
|
||||
combination of the three, merge those two alternatives to suit the
|
||||
situation.
|
||||
|
||||
If your document contains nontrivial examples of program code, we
|
||||
recommend releasing these examples in parallel under your choice of
|
||||
free software license, such as the GNU General Public License,
|
||||
to permit their use in free software.
|
@ -0,0 +1,72 @@
|
||||
/* XPM */
|
||||
static char *akregator-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 50 1",
|
||||
" c black",
|
||||
". c #131317",
|
||||
"X c #21212E",
|
||||
"o c gray32",
|
||||
"O c #58586A",
|
||||
"+ c #555578",
|
||||
"@ c #7C7C93",
|
||||
"# c #F91A00",
|
||||
"$ c #FF7C00",
|
||||
"% c #82828D",
|
||||
"& c #80809B",
|
||||
"* c #92929E",
|
||||
"= c #9B9BAF",
|
||||
"- c #A2A2AE",
|
||||
"; c #A7A7BC",
|
||||
": c #B1B1C3",
|
||||
"> c #B2B2C4",
|
||||
", c #BDBDC7",
|
||||
"< c #BDBDCC",
|
||||
"1 c #BDBDCD",
|
||||
"2 c #C0A0A4",
|
||||
"3 c #E4B9AB",
|
||||
"4 c #E4C49A",
|
||||
"5 c #C5C5C9",
|
||||
"6 c #C2C2D2",
|
||||
"7 c #C5C3D1",
|
||||
"8 c #C4C4D1",
|
||||
"9 c #C6C6D3",
|
||||
"0 c #C6C6D4",
|
||||
"q c #C9C7D5",
|
||||
"w c #CECEDA",
|
||||
"e c #D0CDD9",
|
||||
"r c #D3CED8",
|
||||
"t c #D2D2D9",
|
||||
"y c #D4D2DB",
|
||||
"u c #D7D7DF",
|
||||
"i c #DAD0D5",
|
||||
"p c #D9D9E0",
|
||||
"a c #DADAE2",
|
||||
"s c #DCDCE4",
|
||||
"d c #E0CFC9",
|
||||
"f c #E5DBE0",
|
||||
"g c #E3E3E9",
|
||||
"h c #E4E4E9",
|
||||
"j c #EAEAEF",
|
||||
"k c #EDECF1",
|
||||
"l c #EDEDF1",
|
||||
"z c #F2F2F4",
|
||||
"x c gray100",
|
||||
"c c None",
|
||||
/* pixels */
|
||||
"cccccccccccccccc",
|
||||
"cccccccccccccccc",
|
||||
"cccccccccccccccc",
|
||||
" ",
|
||||
"############3fp:",
|
||||
"#xxx$xx$xx$$dkzw",
|
||||
"#x$x$x$$x$$$i5%.",
|
||||
"#xx$$$x$$x$4yt ",
|
||||
"#x$x$xx$xx$ejk8X",
|
||||
"#$$$$$$$$$e,-91 ",
|
||||
"######28q0gs ",
|
||||
" 1puohg@ ",
|
||||
" =p> *8O ",
|
||||
" +;& ",
|
||||
"cccccc c",
|
||||
"cccccc cc"
|
||||
};
|
@ -0,0 +1,248 @@
|
||||
/* XPM */
|
||||
static char *akregator[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 210 2",
|
||||
" c #000000",
|
||||
". c #05050A",
|
||||
"X c #0D0D0D",
|
||||
"o c #111115",
|
||||
"O c #25252F",
|
||||
"+ c #2A2A30",
|
||||
"@ c #32323B",
|
||||
"# c #3A3A48",
|
||||
"$ c #454551",
|
||||
"% c #474759",
|
||||
"& c #4A4A59",
|
||||
"* c #545464",
|
||||
"= c #55556A",
|
||||
"- c #585861",
|
||||
"; c #595969",
|
||||
": c #646471",
|
||||
"> c #6F6F77",
|
||||
", c #6B6B7E",
|
||||
"< c #71717E",
|
||||
"1 c #6D6D83",
|
||||
"2 c #747485",
|
||||
"3 c #7A7A8C",
|
||||
"4 c #BA5A00",
|
||||
"5 c #BF752E",
|
||||
"6 c #BB7D45",
|
||||
"7 c #DE2900",
|
||||
"8 c #DE3300",
|
||||
"9 c #E20000",
|
||||
"0 c #E90000",
|
||||
"q c #EE1E00",
|
||||
"w c #F00000",
|
||||
"e c #E22800",
|
||||
"r c #EB2A00",
|
||||
"t c #FD2700",
|
||||
"y c #F73000",
|
||||
"u c #F93000",
|
||||
"i c #CB4B25",
|
||||
"p c #CB6200",
|
||||
"a c #DD6B00",
|
||||
"s c #E37A01",
|
||||
"d c #FF7C00",
|
||||
"f c #FD6E25",
|
||||
"g c #FD7027",
|
||||
"h c #FD7129",
|
||||
"j c #BB8009",
|
||||
"k c #B69016",
|
||||
"l c #BC8E3F",
|
||||
"z c #AD8056",
|
||||
"x c #B68C51",
|
||||
"c c #B39557",
|
||||
"v c #BF9768",
|
||||
"b c #C5880E",
|
||||
"n c #CE9A00",
|
||||
"m c #DB9900",
|
||||
"M c #C68E39",
|
||||
"N c #DA8637",
|
||||
"B c #C8A42E",
|
||||
"V c #E1850A",
|
||||
"C c #E39900",
|
||||
"Z c #EE9701",
|
||||
"A c #FF8200",
|
||||
"S c #FF850B",
|
||||
"D c #FF8B00",
|
||||
"F c #FF8614",
|
||||
"G c #FA8B14",
|
||||
"H c #F39202",
|
||||
"J c #FF9300",
|
||||
"K c #FF9D00",
|
||||
"L c #F7901C",
|
||||
"P c #FF9B10",
|
||||
"I c #E58123",
|
||||
"U c #F08521",
|
||||
"Y c #F4943A",
|
||||
"T c #FF9A3C",
|
||||
"R c #EFB502",
|
||||
"E c #F7AE00",
|
||||
"W c #FFA600",
|
||||
"Q c #FCAB00",
|
||||
"! c #FAAB0D",
|
||||
"~ c #FEAF1D",
|
||||
"^ c #FFB100",
|
||||
"/ c #FFB50B",
|
||||
"( c #FFBA00",
|
||||
") c #EBB835",
|
||||
"_ c #FEAF25",
|
||||
"` c #FFAC2E",
|
||||
"' c #C79159",
|
||||
"] c #CE9F5D",
|
||||
"[ c #C39F6F",
|
||||
"{ c #CE9E67",
|
||||
"} c #CF9F73",
|
||||
"| c #C1A546",
|
||||
" . c #D0A85A",
|
||||
".. c #D6BD7B",
|
||||
"X. c #F09B42",
|
||||
"o. c #FF9F45",
|
||||
"O. c #E79F7E",
|
||||
"+. c #E0B643",
|
||||
"@. c #FFAA48",
|
||||
"#. c #FFAE52",
|
||||
"$. c #FFA959",
|
||||
"%. c #FFBC56",
|
||||
"&. c #FFBC5B",
|
||||
"*. c #E5B161",
|
||||
"=. c #EDB267",
|
||||
"-. c #FFAE62",
|
||||
";. c #FFBE6F",
|
||||
":. c #FFB570",
|
||||
">. c #FFBC7D",
|
||||
",. c #FFC200",
|
||||
"<. c #FFCB00",
|
||||
"1. c #FACA08",
|
||||
"2. c #FFD000",
|
||||
"3. c #FFC64A",
|
||||
"4. c #FFC272",
|
||||
"5. c #81818D",
|
||||
"6. c #818196",
|
||||
"7. c #838398",
|
||||
"8. c #8C8C96",
|
||||
"9. c #8D8D9D",
|
||||
"0. c #92929E",
|
||||
"q. c #8C8CA0",
|
||||
"w. c #9090A6",
|
||||
"e. c #9595AA",
|
||||
"r. c #9B9BAD",
|
||||
"t. c #9D9DB0",
|
||||
"y. c #A7A7B2",
|
||||
"u. c #A6A6B8",
|
||||
"i. c #ADADB7",
|
||||
"p. c #AAAABC",
|
||||
"a. c #B6AAB6",
|
||||
"s. c #BFB5BE",
|
||||
"d. c #AFAFC1",
|
||||
"f. c #B4B4C3",
|
||||
"g. c #B8B8C7",
|
||||
"h. c #BBBBCA",
|
||||
"j. c #D898A0",
|
||||
"k. c #CFAD85",
|
||||
"l. c #CCAD8F",
|
||||
"z. c #C6A994",
|
||||
"x. c #C3AF9C",
|
||||
"c. c #CFBF99",
|
||||
"v. c #DEB289",
|
||||
"b. c #C5B2BB",
|
||||
"n. c #C6BABF",
|
||||
"m. c #E3B992",
|
||||
"M. c #FFBE82",
|
||||
"N. c #C2BDC9",
|
||||
"B. c #DDC7A5",
|
||||
"V. c #DBC4AB",
|
||||
"C. c #DACBAD",
|
||||
"Z. c #D8C6B9",
|
||||
"A. c #EDD192",
|
||||
"S. c #F4C085",
|
||||
"D. c #FDC48B",
|
||||
"F. c #FFCA8E",
|
||||
"G. c #F7CD96",
|
||||
"H. c #FFC691",
|
||||
"J. c #FFCA98",
|
||||
"K. c #E3C2A9",
|
||||
"L. c #E0CBB8",
|
||||
"P. c #F3D6A7",
|
||||
"I. c #FFD1A7",
|
||||
"U. c #FFD4AB",
|
||||
"Y. c #F7D3B2",
|
||||
"T. c #F1D9B2",
|
||||
"R. c #FFD7B2",
|
||||
"E. c #FFDAB3",
|
||||
"W. c #FFDBB9",
|
||||
"Q. c #C0C0CD",
|
||||
"!. c #CFC7C9",
|
||||
"~. c #C6C6D1",
|
||||
"^. c #C8C4D0",
|
||||
"/. c #C8C8D3",
|
||||
"(. c #D1C6D0",
|
||||
"). c #D2CDD8",
|
||||
"_. c #D5D0D3",
|
||||
"`. c #D4D4DD",
|
||||
"'. c #D8D6DF",
|
||||
"]. c #D8D7E2",
|
||||
"[. c #DCDBE4",
|
||||
"{. c #DFDFE9",
|
||||
"}. c #E0CFC7",
|
||||
"|. c #E2D6C0",
|
||||
" X c #E3D8C9",
|
||||
".X c #E3DBD1",
|
||||
"XX c #E0D9DA",
|
||||
"oX c #ECDED1",
|
||||
"OX c #F7DFC9",
|
||||
"+X c #FFDEC0",
|
||||
"@X c #E0DEE3",
|
||||
"#X c #ECE2D8",
|
||||
"$X c #F3E2CE",
|
||||
"%X c #F6E8C4",
|
||||
"&X c #F7E3D1",
|
||||
"*X c #F3E9DA",
|
||||
"=X c #FDE5D0",
|
||||
"-X c #FBEAD9",
|
||||
";X c #E1E1E7",
|
||||
":X c #E4E4EA",
|
||||
">X c #EFE8E2",
|
||||
",X c #EAEAEF",
|
||||
"<X c #ECECF2",
|
||||
"1X c #F5ECE3",
|
||||
"2X c #FBF7EC",
|
||||
"3X c #F5F5F8",
|
||||
"4X c #FBF6F3",
|
||||
"5X c #FCF9F6",
|
||||
"6X c #FDFCFC",
|
||||
"7X c None",
|
||||
/* pixels */
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X 7X7X7X",
|
||||
"0 0 0 0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 j.(.(.g.r.< ",
|
||||
"t f h h h h h h h h h h h h h f h f f f f f f f O.[.).:X`.h.p.w.",
|
||||
"u M.E.W.W.U.U.U.U.U.R.+XW.U.U.U.U.+XE.U.U.I.I.J.K.`.].6X6X6X6Xp.",
|
||||
"y :.-X6X6X6XoXH.H.=X6X3X6XV.F.W.6X5X6X#XS.D.D.-.}./.{.3X<X`.h.9.",
|
||||
"y $.&X5X6 }.6X} M.6Xx.' { v 4.1X Xx ] [ =.;.#.S XXN./.i.0.: + ",
|
||||
"y o.OX6Xv.*X>X6 $.1X6X$XG.&.3.T.6X*XY.3.` P J L ;Xb.X ",
|
||||
"y S Y.6XoX6Xl.Y T X.k. X6XB._ ~ .C.3X1XZ K J Z.]./.8. ",
|
||||
"y d Y.6X4 m.6XN S @.J H *XL.C 3./ E A.6Xb W *.:XQ.:X].r.O ",
|
||||
"y d Y.6Xp F 4XL.G 5X4X2X6Xc E %X6X2X6Xc.m ! _.Q.`.<X<X:Xt.: ",
|
||||
"y d U 5 a d I 5 s V M x p m ( R B | k n ) !.[.g.;X,X<X<X,Xu.= ",
|
||||
"y d d d d d d A D J K Q ( ,.,.<.<.2.<...'.`.i.- 5.r.g.:X<Xp.. ",
|
||||
"y d d d d d d A D J K Q R ( ,.1.+.l.n.{.h.h.h.. $ 3 e., ",
|
||||
"q r e 7 7 7 7 7 8 8 8 8 i a.n.~.{.{./.d./.:X'.3 . ",
|
||||
" ; d.g.p.p.r.2 /.,X:X:Xt. ",
|
||||
" @ g.Q.].;Xy. > /.,X:XQ.* 7X",
|
||||
"7X f.[.[.'.0. 9.Q.:X:X6. 7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X r.`.[./.2 q.~.p.2 7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X 7.Q.[.f.* X 1 o 7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X , t./.r.# 7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X = % % . 7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X 7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X 7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X",
|
||||
"7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X7X"
|
||||
};
|
@ -0,0 +1,134 @@
|
||||
/* XPM */
|
||||
static char *kaddressbook-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 112 2",
|
||||
" c black",
|
||||
". c #00004C",
|
||||
"X c #091A4F",
|
||||
"o c #1D3675",
|
||||
"O c #1F3879",
|
||||
"+ c #243E72",
|
||||
"@ c #36477A",
|
||||
"# c #52617F",
|
||||
"$ c #244183",
|
||||
"% c #244184",
|
||||
"& c #264386",
|
||||
"* c #274489",
|
||||
"= c #28458A",
|
||||
"- c #2A498F",
|
||||
"; c #2A4A8F",
|
||||
": c #2D4D94",
|
||||
"> c #2D4E96",
|
||||
", c #39558A",
|
||||
"< c #30529B",
|
||||
"1 c #32549D",
|
||||
"2 c #33559C",
|
||||
"3 c #3559A3",
|
||||
"4 c #3A5DA0",
|
||||
"5 c #3B5CA2",
|
||||
"6 c #395EAB",
|
||||
"7 c #3B62AF",
|
||||
"8 c #3D63AB",
|
||||
"9 c #3D63B2",
|
||||
"0 c #3F66B3",
|
||||
"q c #52528B",
|
||||
"w c #466196",
|
||||
"e c #4663A0",
|
||||
"r c #4367AD",
|
||||
"t c #436DBE",
|
||||
"y c #5578BD",
|
||||
"u c #4773C6",
|
||||
"i c #4D77C6",
|
||||
"p c #4974C8",
|
||||
"a c #4975C9",
|
||||
"s c #4B77C9",
|
||||
"d c #4E78C5",
|
||||
"f c #4A78CB",
|
||||
"g c #4A78CC",
|
||||
"h c #4B79CD",
|
||||
"j c #4B79CE",
|
||||
"k c #4C79CC",
|
||||
"l c #4C7ACF",
|
||||
"z c #4D7BD0",
|
||||
"x c #4E7DD2",
|
||||
"c c #4F7FD6",
|
||||
"v c #507FD7",
|
||||
"b c #6680B2",
|
||||
"n c #5881CE",
|
||||
"m c #5B83CC",
|
||||
"M c #5A83CF",
|
||||
"N c #5281D7",
|
||||
"B c #5180D8",
|
||||
"V c #5284DB",
|
||||
"C c #5284DC",
|
||||
"Z c #5686DD",
|
||||
"A c #5587E0",
|
||||
"S c #5689E3",
|
||||
"D c #5789E3",
|
||||
"F c #578AE4",
|
||||
"G c #5886E3",
|
||||
"H c #5989E0",
|
||||
"J c #588BE5",
|
||||
"K c #5A90EB",
|
||||
"L c #5C91ED",
|
||||
"P c #5C92EE",
|
||||
"I c #5C92EF",
|
||||
"U c #5E94F1",
|
||||
"Y c #6381C0",
|
||||
"T c #6C8BCA",
|
||||
"R c #678ED6",
|
||||
"E c #708BC2",
|
||||
"W c #7595D4",
|
||||
"Q c #7B98D2",
|
||||
"! c #6090E5",
|
||||
"~ c #6292E7",
|
||||
"^ c #6594E7",
|
||||
"/ c #6092EB",
|
||||
"( c #6596ED",
|
||||
") c #6096F3",
|
||||
"_ c #639BFA",
|
||||
"` c #649DFD",
|
||||
"' c #659FFF",
|
||||
"] c #669FFF",
|
||||
"[ c #709AE5",
|
||||
"{ c #69A4FF",
|
||||
"} c #6FA4FE",
|
||||
"| c #6CA8FF",
|
||||
" . c #6DA9FF",
|
||||
".. c #71A1F3",
|
||||
"X. c #74A1F0",
|
||||
"o. c #7BAAFB",
|
||||
"O. c #8B9EC1",
|
||||
"+. c #87A0D2",
|
||||
"@. c #8FA0DB",
|
||||
"#. c #83ADF8",
|
||||
"$. c #8BBBFF",
|
||||
"%. c #8EBDFF",
|
||||
"&. c #90B1EC",
|
||||
"*. c #92B4EF",
|
||||
"=. c #90BAFF",
|
||||
"-. c #91BFFF",
|
||||
";. c #92C0FF",
|
||||
":. c #ACD0FF",
|
||||
">. c #BDD9FF",
|
||||
",. c #C1DAFF",
|
||||
"<. c gray100",
|
||||
"1. c None",
|
||||
/* pixels */
|
||||
"1.1.1.1.1.1.1.1.1.1.] >.>.:.$. .",
|
||||
"1.1.1.1.1.1.1.1.1.1.&.O.# *.} _ ",
|
||||
"1.1.1.1.1.1.1.1.1.] , b w R J V ",
|
||||
"1.1.1.1.1.1.1.1.1.P 4 r + i s p ",
|
||||
"1.1.1.1.1.1.1.1.1.x s 8 0 Y 9 p ",
|
||||
"1.1.1.1.1.1.1.1.1.P d 1 e T : z ",
|
||||
"1.1.1.1.1.1.1.1.P ~ v m W 5 < c ",
|
||||
"1.1.1.1.1.1.1.1.( H z m y O t 1.",
|
||||
"1.1.1.1.1.1.1.X.^ v p M o 3 s 1.",
|
||||
"1.1.1.1.1.] o.X.Z z N $ ; f 1.1.",
|
||||
"1.1.1. .-.=.#.K v D & * z 1.1.1.",
|
||||
"1.-.Q E @ [ ( F D = : x 1.1.1.1.",
|
||||
"1.%.+.X < s U u & 7 V 1.1.1.1.1.",
|
||||
"1. .{ ] K u < 6 c F 1.1.1.1.1.1.",
|
||||
"1.@.Z I Z c I ] 1.1.1.1.1.1.1.1.",
|
||||
"1.q . 1.1.1.1.1.1.1.1.1.1.1.1.1."
|
||||
};
|
@ -0,0 +1,192 @@
|
||||
/* XPM */
|
||||
static char *kaddressbook[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 154 2",
|
||||
" c black",
|
||||
". c #00004E",
|
||||
"X c #060652",
|
||||
"o c #182655",
|
||||
"O c #192B5F",
|
||||
"+ c #1A2C61",
|
||||
"@ c #1D3066",
|
||||
"# c #1F336B",
|
||||
"$ c #2B2B6B",
|
||||
"% c #20356D",
|
||||
"& c #273C6B",
|
||||
"* c #223972",
|
||||
"= c #263E79",
|
||||
"- c #303D60",
|
||||
"; c #363673",
|
||||
": c #2C416A",
|
||||
"> c #27407B",
|
||||
", c #28407C",
|
||||
"< c #2B4582",
|
||||
"1 c #2D4886",
|
||||
"2 c #2E4A88",
|
||||
"3 c #354D86",
|
||||
"4 c #324F8F",
|
||||
"5 c #35528F",
|
||||
"6 c #3B548C",
|
||||
"7 c #345293",
|
||||
"8 c #3D5792",
|
||||
"9 c #3B5A94",
|
||||
"0 c #3B5B9E",
|
||||
"q c #3B5DA1",
|
||||
"w c #3E5EB3",
|
||||
"e c #3F62A7",
|
||||
"r c #3F62A8",
|
||||
"t c #435480",
|
||||
"y c #466197",
|
||||
"u c #456199",
|
||||
"i c #4C6395",
|
||||
"p c #516697",
|
||||
"a c #506799",
|
||||
"s c #536898",
|
||||
"d c #4162A5",
|
||||
"f c #4164AB",
|
||||
"g c #4965A2",
|
||||
"h c #4E6DAC",
|
||||
"j c #456AB3",
|
||||
"k c #486FB8",
|
||||
"l c #4A72BC",
|
||||
"z c #5170AB",
|
||||
"x c #5F73A1",
|
||||
"c c #5B7BB9",
|
||||
"v c #6377A5",
|
||||
"b c #677DAD",
|
||||
"n c #6C7FAA",
|
||||
"m c #607CB5",
|
||||
"M c #4D76C2",
|
||||
"N c #4F78C6",
|
||||
"B c #527AC5",
|
||||
"V c #527DCB",
|
||||
"C c #597DC1",
|
||||
"Z c #6D86BA",
|
||||
"A c #7187B7",
|
||||
"S c #7C8DB2",
|
||||
"D c #788FBF",
|
||||
"F c #7C92BC",
|
||||
"G c #5C85CF",
|
||||
"H c #5582D2",
|
||||
"J c #5985D4",
|
||||
"K c #5986D8",
|
||||
"L c #5B88D6",
|
||||
"P c #5B8ADB",
|
||||
"I c #5D8DE1",
|
||||
"U c #5F90E4",
|
||||
"Y c #6385C5",
|
||||
"T c #6185C8",
|
||||
"R c #6B8AC6",
|
||||
"E c #6B8DCC",
|
||||
"W c #628DDC",
|
||||
"Q c #6491DE",
|
||||
"! c #6D91D4",
|
||||
"~ c #6994DF",
|
||||
"^ c #708DC6",
|
||||
"/ c #7590C4",
|
||||
"( c #7492CB",
|
||||
") c #7C92C1",
|
||||
"_ c #7B93CF",
|
||||
"` c #7394D0",
|
||||
"' c #7599DA",
|
||||
"] c #7B9AD2",
|
||||
"[ c #7B9DDA",
|
||||
"{ c #6091E5",
|
||||
"} c #6294EA",
|
||||
"| c #6598EF",
|
||||
" . c #6996E4",
|
||||
".. c #6D99E5",
|
||||
"X. c #6E9BE8",
|
||||
"o. c #669AF2",
|
||||
"O. c #6A9EF6",
|
||||
"+. c #6A9FF9",
|
||||
"@. c #729BE3",
|
||||
"#. c #729FEC",
|
||||
"$. c #6CA3FE",
|
||||
"%. c #7AA3EA",
|
||||
"&. c #75A3F1",
|
||||
"*. c #76A9FF",
|
||||
"=. c #79ABFF",
|
||||
"-. c #8191B7",
|
||||
";. c #8495B9",
|
||||
":. c #9393B3",
|
||||
">. c #849CCC",
|
||||
",. c #8A9CC2",
|
||||
"<. c #80A1DE",
|
||||
"1. c #88A5DA",
|
||||
"2. c #8FAADC",
|
||||
"3. c #94A6CB",
|
||||
"4. c #94AAD3",
|
||||
"5. c #99ADD3",
|
||||
"6. c #9CB4DF",
|
||||
"7. c #80A8EC",
|
||||
"8. c #88AEEF",
|
||||
"9. c #84ADF2",
|
||||
"0. c #84B3FE",
|
||||
"q. c #8BB2F3",
|
||||
"w. c #8DB8FF",
|
||||
"e. c #92AEE0",
|
||||
"r. c #94B3E8",
|
||||
"t. c #99B2E0",
|
||||
"y. c #9AB6E9",
|
||||
"u. c #94BCFE",
|
||||
"i. c #9ABBF3",
|
||||
"p. c #99BEFB",
|
||||
"a. c #A3B6DB",
|
||||
"s. c #BBBBD4",
|
||||
"d. c #A8BFE8",
|
||||
"f. c #A3BFF0",
|
||||
"g. c #9BC1FF",
|
||||
"h. c #A8C1EE",
|
||||
"j. c #A7C8FF",
|
||||
"k. c #A9C4F2",
|
||||
"l. c #ADC8F7",
|
||||
"z. c #AACBFF",
|
||||
"x. c #B4C6E8",
|
||||
"c. c #B9C7E3",
|
||||
"v. c #BBCBEA",
|
||||
"b. c #B5CDF5",
|
||||
"n. c #BDD2F7",
|
||||
"m. c #B9D4FF",
|
||||
"M. c #CCCCDD",
|
||||
"N. c #C0D1F0",
|
||||
"B. c #C5DBFF",
|
||||
"V. c #CCDBF5",
|
||||
"C. c #D1E1FB",
|
||||
"Z. c #DDEAFF",
|
||||
"A. c #FEFEFF",
|
||||
"S. c None",
|
||||
/* pixels */
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.*.0.g.w.*.S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.i.h.k.h.b.j.w.*.$.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.q.n.V.c.N.[ r.=.&.$.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.o.l.S F : 2.6.E &.} } $.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S...t 1.y.s a 2.B @.K V $.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.o.W : ] y <.y ! l ! V l $.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.o.P z @.y h & B l E l f +.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.{ H 8 0 V q 9 l k R j r | S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.V P 0 : 5 j M j / c q r U S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.N H H V M f g 4.r 7 k P S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.I G l l j 7 7 D ) 7 1 N S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.P W l 9 < 8 A 4.a 1 1 H S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.I W L V V Y R >.) 2 = f V S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.I W H V V Y ^ 5.6 = = V S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.P Q K V V C Y >.b > # r B S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.S.U { W V V N C E ,., # < N S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.S.U .~ J V V M C 5.3 # + M S.S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.S.} X.@.P V V N l 4.i % + q M S.S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.S.| #.%. .J V B M ( v % + 4 M S.S.S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.S.S.o.&.7. .P V V N ( S % + < N S.S.S.S.S.S.S.S.",
|
||||
"S.S.S.S.S.S.S.S.$.$.9.8.@.~ J V N ` -.* + # N S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.S.S.S.$.=.w.u.i.q.%. .P V V ] ;.* + # k S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.S.$.p.g.k.x m q.%...P J J t.n * + , l S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.m.z.s 6 1 < < k } P J ' a.i * + 1 V S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.$.B.B.) o < < 2 k I .d.,.3 * + q V S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.$.w.A.Z.Z B ..9.h.x.4.y , * = N K S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.$.$.p.C.V.V.c.5.c 0 7 < * r K P S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.$.$.} H V l f q 2 < r P } S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.s._ } U V N l j V O.+.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.M.:.$ . w $.$.$.$.$.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.:.; . . S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.",
|
||||
"S.S.X . S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S.S."
|
||||
};
|
@ -0,0 +1,191 @@
|
||||
/* XPM */
|
||||
static char *kalarm-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 169 2",
|
||||
" c black",
|
||||
". c gray20",
|
||||
"X c gray25",
|
||||
"o c gray35",
|
||||
"O c gray36",
|
||||
"+ c #656565",
|
||||
"@ c gray45",
|
||||
"# c #7B7B7B",
|
||||
"$ c #8D3800",
|
||||
"% c #8E3900",
|
||||
"& c #974202",
|
||||
"* c #9B4400",
|
||||
"= c #9A4B08",
|
||||
"- c #984B10",
|
||||
"; c #A34B00",
|
||||
": c #A44C00",
|
||||
"> c #A74F00",
|
||||
", c #AA5100",
|
||||
"< c #AF5500",
|
||||
"1 c #B05600",
|
||||
"2 c #B05900",
|
||||
"3 c #B25A01",
|
||||
"4 c #B35C00",
|
||||
"5 c #B45900",
|
||||
"6 c #A76700",
|
||||
"7 c #AD6100",
|
||||
"8 c #AE6914",
|
||||
"9 c #B36200",
|
||||
"0 c #B66700",
|
||||
"q c #B16009",
|
||||
"w c #BB6707",
|
||||
"e c #BC6A00",
|
||||
"r c #BF6C10",
|
||||
"t c #B37A00",
|
||||
"y c #BC700E",
|
||||
"u c #BF710C",
|
||||
"i c #BC7820",
|
||||
"p c #B37836",
|
||||
"a c #AA744B",
|
||||
"s c #B37943",
|
||||
"d c #C26700",
|
||||
"f c #C36600",
|
||||
"g c #C66D00",
|
||||
"h c #C96C00",
|
||||
"j c #CD6E00",
|
||||
"k c #CF6E00",
|
||||
"l c #CC7700",
|
||||
"z c #C97408",
|
||||
"x c #CA7C0E",
|
||||
"c c #CD7910",
|
||||
"v c #D27300",
|
||||
"b c #D27400",
|
||||
"n c #D47500",
|
||||
"m c #D47600",
|
||||
"M c #D47A00",
|
||||
"N c #B78B05",
|
||||
"B c #BE9376",
|
||||
"V c #BF9472",
|
||||
"C c #C08805",
|
||||
"Z c #C98900",
|
||||
"A c #C98113",
|
||||
"S c #CD8A19",
|
||||
"D c #C49300",
|
||||
"F c #C79D00",
|
||||
"G c #CC901B",
|
||||
"H c #D68C0E",
|
||||
"J c #DB8304",
|
||||
"K c #DA8405",
|
||||
"L c #D79012",
|
||||
"P c #C98528",
|
||||
"I c #CA8A3F",
|
||||
"U c #CD9525",
|
||||
"Y c #D69D2D",
|
||||
"T c #D09B39",
|
||||
"R c #D4A500",
|
||||
"E c #D9B600",
|
||||
"W c #DFA423",
|
||||
"Q c #DAA62B",
|
||||
"! c #E28500",
|
||||
"~ c #E38800",
|
||||
"^ c #E58D02",
|
||||
"/ c #E7950D",
|
||||
"( c #EA990C",
|
||||
") c #E49710",
|
||||
"_ c #F89B00",
|
||||
"` c #EBA100",
|
||||
"' c #EBA500",
|
||||
"] c #EAA815",
|
||||
"[ c #FFAB0A",
|
||||
"{ c #FDB100",
|
||||
"} c #FFB502",
|
||||
"| c #FFB414",
|
||||
" . c #FFBC1D",
|
||||
".. c #E4AF2C",
|
||||
"X. c #CC954D",
|
||||
"o. c #CDA355",
|
||||
"O. c #DBB744",
|
||||
"+. c #CDA165",
|
||||
"@. c #CEA56C",
|
||||
"#. c #DDA761",
|
||||
"$. c #E1A447",
|
||||
"%. c #E5B859",
|
||||
"&. c #DBC100",
|
||||
"*. c #DAC300",
|
||||
"=. c #DCC100",
|
||||
"-. c #E0CF00",
|
||||
";. c #FFC500",
|
||||
":. c #FFD600",
|
||||
">. c #FFDC00",
|
||||
",. c #F5C02C",
|
||||
"<. c #F8C32C",
|
||||
"1. c #FFC729",
|
||||
"2. c #FFC92B",
|
||||
"3. c #F2C535",
|
||||
"4. c #FFD539",
|
||||
"5. c #FFD639",
|
||||
"6. c #FFD93D",
|
||||
"7. c #EBE500",
|
||||
"8. c #FFE600",
|
||||
"9. c #FFF300",
|
||||
"0. c #FFF400",
|
||||
"q. c #FFFE00",
|
||||
"w. c yellow",
|
||||
"e. c #EACD4C",
|
||||
"r. c #EACE51",
|
||||
"t. c #F1CD41",
|
||||
"y. c #F3D258",
|
||||
"u. c #EEC565",
|
||||
"i. c #EAD166",
|
||||
"p. c #FFE044",
|
||||
"a. c #FFE247",
|
||||
"s. c #FFE74C",
|
||||
"d. c #FFE84E",
|
||||
"f. c #FFEE57",
|
||||
"g. c #FFEF59",
|
||||
"h. c #FFF05F",
|
||||
"j. c #FFF063",
|
||||
"k. c gray65",
|
||||
"l. c #ACACAC",
|
||||
"z. c #B4B4B4",
|
||||
"x. c gray",
|
||||
"c. c #CDA280",
|
||||
"v. c #DAB285",
|
||||
"b. c #DAC8B5",
|
||||
"n. c #E4C19D",
|
||||
"m. c #E1C3A0",
|
||||
"M. c #E2CDBF",
|
||||
"N. c #FFF484",
|
||||
"B. c #FFF699",
|
||||
"V. c #C5C5C5",
|
||||
"C. c gray80",
|
||||
"Z. c #EADACF",
|
||||
"A. c #E3DDDA",
|
||||
"S. c #E1E1E1",
|
||||
"D. c gray89",
|
||||
"F. c #E6E6E6",
|
||||
"G. c #EFE9E6",
|
||||
"H. c gray91",
|
||||
"J. c gray92",
|
||||
"K. c #ECECEC",
|
||||
"L. c #EEEEEE",
|
||||
"P. c gray94",
|
||||
"I. c gray95",
|
||||
"U. c gray96",
|
||||
"Y. c #F8F8F8",
|
||||
"T. c gray98",
|
||||
"R. c #FDFDFD",
|
||||
"E. c gray100",
|
||||
"W. c None",
|
||||
/* pixels */
|
||||
"W.W.$ 8 O.o.- W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.y 5.d.j.r.$ $ $ $ s p $ W.W.",
|
||||
"W.> ) 1.p...C E &.6 i.B.N.e.= W.",
|
||||
"W.1 J / K ' >.9.w.N g.g.g.d.U W.",
|
||||
"W.$ 3 ^ M g m _ ;.-.G a.p.6.W W.",
|
||||
"W.& ( a A.T.K.@.c { *.L <.2.x W.",
|
||||
"W.y i O C.E.E.E.Z.r { 7.E R * W.",
|
||||
"W.A @.o X I.E.k.l.M.! >.w.w.t W.",
|
||||
"W.S +.E.# @ F.. z.Y.I } w.w.F W.",
|
||||
"W.3 T E.E.@ . V.U.P.B [ w.w.D W.",
|
||||
"W., Q v.E.x.+ K.L.H.V | 9.9.7 W.",
|
||||
"W.W.w Y n.U.P.J.F.S.P .8.Z > W.",
|
||||
"W.W.2 z %.#.m.F.b.X.,.] e < W.W.",
|
||||
"W.W.j ! f $.u.y.t.3.H 0 9 W.W.W.",
|
||||
"W.W.f g W.b b b b 4 ` l * W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.3 b j ; W.W.W."
|
||||
};
|
@ -0,0 +1,276 @@
|
||||
/* XPM */
|
||||
static char *kalarm[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 238 2",
|
||||
" c black",
|
||||
". c gray20",
|
||||
"X c #3D3D3D",
|
||||
"o c gray25",
|
||||
"O c #555555",
|
||||
"+ c gray35",
|
||||
"@ c #646464",
|
||||
"# c #7C7C7C",
|
||||
"$ c #8D3800",
|
||||
"% c #953F00",
|
||||
"& c #954300",
|
||||
"* c #96470D",
|
||||
"= c #9B4400",
|
||||
"- c #9D4F09",
|
||||
"; c #974A12",
|
||||
": c #9D520C",
|
||||
"> c #9E6538",
|
||||
", c #A34C00",
|
||||
"< c #A25202",
|
||||
"1 c #AB5200",
|
||||
"2 c #A85900",
|
||||
"3 c #AD5D09",
|
||||
"4 c #A45D18",
|
||||
"5 c #AA5810",
|
||||
"6 c #B05600",
|
||||
"7 c #B45B00",
|
||||
"8 c #BB5E00",
|
||||
"9 c #B15F10",
|
||||
"0 c #A06000",
|
||||
"q c #AC6C00",
|
||||
"w c #AE7400",
|
||||
"e c #B26007",
|
||||
"r c #B1630B",
|
||||
"t c #B76F0E",
|
||||
"y c #BB6300",
|
||||
"u c #BA670B",
|
||||
"i c #BE6806",
|
||||
"p c #B86C0E",
|
||||
"a c #B17600",
|
||||
"s c #B17800",
|
||||
"d c #B87200",
|
||||
"f c #BE7904",
|
||||
"g c #B2711C",
|
||||
"h c #BE7B13",
|
||||
"j c #BF7D18",
|
||||
"k c #AF6820",
|
||||
"l c #A56434",
|
||||
"z c #B2712B",
|
||||
"x c #B87E2C",
|
||||
"c c #B57D3B",
|
||||
"v c #BC7730",
|
||||
"b c #996A4A",
|
||||
"n c #B67B4E",
|
||||
"m c #C36500",
|
||||
"M c #C26801",
|
||||
"N c #C46E08",
|
||||
"B c #CB6C00",
|
||||
"V c #C67205",
|
||||
"C c #C57A00",
|
||||
"Z c #CC7200",
|
||||
"A c #C9730A",
|
||||
"S c #CD7D0A",
|
||||
"D c #D27400",
|
||||
"F c #D47B02",
|
||||
"G c #D17A0B",
|
||||
"H c #DB7600",
|
||||
"J c #E47D00",
|
||||
"K c #B88300",
|
||||
"L c #BC801F",
|
||||
"P c #BB9500",
|
||||
"I c #BF892A",
|
||||
"U c #9F806B",
|
||||
"Y c #B88040",
|
||||
"T c #B78767",
|
||||
"R c #BA8962",
|
||||
"E c #BD9273",
|
||||
"W c #CD8302",
|
||||
"Q c #C78419",
|
||||
"! c #CD8514",
|
||||
"~ c #C88519",
|
||||
"^ c #CA881A",
|
||||
"/ c #C69C00",
|
||||
"( c #D38402",
|
||||
") c #D4830A",
|
||||
"_ c #D48C01",
|
||||
"` c #DB8302",
|
||||
"' c #D18612",
|
||||
"] c #D48C14",
|
||||
"[ c #D08F1A",
|
||||
"{ c #DB8B11",
|
||||
"} c #D59700",
|
||||
"| c #D99202",
|
||||
" . c #D99B00",
|
||||
".. c #DE9312",
|
||||
"X. c #DF941C",
|
||||
"o. c #C78327",
|
||||
"O. c #C5842E",
|
||||
"+. c #C88436",
|
||||
"@. c #CE8837",
|
||||
"#. c #CD9423",
|
||||
"$. c #CD9A2A",
|
||||
"%. c #DC9E20",
|
||||
"&. c #D7953C",
|
||||
"*. c #CCAA00",
|
||||
"=. c #CDB700",
|
||||
"-. c #DEAE00",
|
||||
";. c #D5B200",
|
||||
":. c #D9B600",
|
||||
">. c #D4AB37",
|
||||
",. c #DDAE30",
|
||||
"<. c #E18500",
|
||||
"1. c #E58B01",
|
||||
"2. c #EB990B",
|
||||
"3. c #E19D1B",
|
||||
"4. c #E89F16",
|
||||
"5. c #F19600",
|
||||
"6. c #F39A02",
|
||||
"7. c #FB9200",
|
||||
"8. c #FA9B00",
|
||||
"9. c #E0AC00",
|
||||
"0. c #E4A21D",
|
||||
"q. c #EBA81D",
|
||||
"w. c #E0BE00",
|
||||
"e. c #F1AE00",
|
||||
"r. c #FEA200",
|
||||
"t. c #F8A60B",
|
||||
"y. c #FFAA01",
|
||||
"u. c #FFAD0C",
|
||||
"i. c #FFB300",
|
||||
"p. c #FDB314",
|
||||
"a. c #FEBA1B",
|
||||
"s. c #E1A322",
|
||||
"d. c #E3AD2C",
|
||||
"f. c #E5B42F",
|
||||
"g. c #ECB62C",
|
||||
"h. c #E7B138",
|
||||
"j. c #E5BF3B",
|
||||
"k. c #EABC34",
|
||||
"l. c #FFBF20",
|
||||
"z. c #C69642",
|
||||
"x. c #C99052",
|
||||
"c. c #C69960",
|
||||
"v. c #C79F7C",
|
||||
"b. c #DFA24A",
|
||||
"n. c #DBA050",
|
||||
"m. c #DBBA66",
|
||||
"M. c #E2A549",
|
||||
"N. c #E8B343",
|
||||
"B. c #D5C400",
|
||||
"V. c #DBC100",
|
||||
"C. c #D8D200",
|
||||
"Z. c #DBDB00",
|
||||
"A. c #E4D300",
|
||||
"S. c #F6CB00",
|
||||
"D. c #FFC500",
|
||||
"F. c #FECA00",
|
||||
"G. c #FFC119",
|
||||
"H. c #FFCD11",
|
||||
"J. c #FFDC00",
|
||||
"K. c #E8C13D",
|
||||
"L. c #FFC325",
|
||||
"P. c #FDC428",
|
||||
"I. c #FFC92B",
|
||||
"U. c #FECD31",
|
||||
"Y. c #FFD134",
|
||||
"T. c #FFD639",
|
||||
"R. c #FFD93D",
|
||||
"E. c #E4E400",
|
||||
"W. c #ECEC00",
|
||||
"Q. c #FFE201",
|
||||
"!. c #FFEA00",
|
||||
"~. c #F4F400",
|
||||
"^. c #FEF300",
|
||||
"/. c #FEFE00",
|
||||
"(. c #F5D341",
|
||||
"). c #FDDC42",
|
||||
"_. c #F2D758",
|
||||
"`. c #F6DE53",
|
||||
"'. c #ECC46E",
|
||||
"]. c #EDCB73",
|
||||
"[. c #F2D761",
|
||||
"{. c #F3D96F",
|
||||
"}. c #F4DB78",
|
||||
"|. c #FFE045",
|
||||
" X c #FEE44A",
|
||||
".X c #FFE94E",
|
||||
"XX c #F8E65C",
|
||||
"oX c #FFED53",
|
||||
"OX c #FFEF59",
|
||||
"+X c #FFF05B",
|
||||
"@X c #FFF163",
|
||||
"#X c #FFF26B",
|
||||
"$X c #FFF374",
|
||||
"%X c #FFF37C",
|
||||
"&X c #828282",
|
||||
"*X c #909090",
|
||||
"=X c gray60",
|
||||
"-X c #AF9F94",
|
||||
";X c gray64",
|
||||
":X c #AEAEAE",
|
||||
">X c #B3AEAA",
|
||||
",X c gray72",
|
||||
"<X c #C5A48B",
|
||||
"1X c #C6AB9A",
|
||||
"2X c #CFB396",
|
||||
"3X c #DEBA90",
|
||||
"4X c #D1B6A5",
|
||||
"5X c #D6BFA5",
|
||||
"6X c #DBC1AF",
|
||||
"7X c #DFC9B5",
|
||||
"8X c #E3C888",
|
||||
"9X c #E3CA98",
|
||||
"0X c #F6DE80",
|
||||
"qX c #F7DF8A",
|
||||
"wX c #E6CFB4",
|
||||
"eX c #F8E985",
|
||||
"rX c #F8EB97",
|
||||
"tX c #FFF482",
|
||||
"yX c #FFF591",
|
||||
"uX c #FFF69B",
|
||||
"iX c #FFF7A2",
|
||||
"pX c #FFF7A8",
|
||||
"aX c #FCF1BA",
|
||||
"sX c #FFF8B2",
|
||||
"dX c #CBCBCB",
|
||||
"fX c gray83",
|
||||
"gX c #DED9D5",
|
||||
"hX c #DCDCDC",
|
||||
"jX c #E1D5C7",
|
||||
"kX c #E2D2C8",
|
||||
"lX c #EADACF",
|
||||
"zX c #E4E4E4",
|
||||
"xX c #EBEBEB",
|
||||
"cX c #F3EDE6",
|
||||
"vX c #F8F3ED",
|
||||
"bX c #F3F3F3",
|
||||
"nX c #FEFEFE",
|
||||
"mX c None",
|
||||
/* pixels */
|
||||
"mXmXmXmXmXmX$ : I z.Y ; $ mXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmX",
|
||||
"mXmXmXmXmX$ #. XOX$XyXrXz $ mXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmX",
|
||||
"mXmXmXmX& [ T.|.oXOX#X$X#Xg $ mXmXmXmXmXmX$ $ $ $ $ mXmXmXmXmXmX",
|
||||
"mXmXmXmX7 L.Y.R.|..XoXOXOXL $ $ $ $ mX$ ; x.9X8Xm.I $ mXmXmXmXmX",
|
||||
"mXmXmX, ) l.I.Y.R.|.|.).h s / / / s & 4 eXiXpXuXtX#X>.$ mXmXmXmX",
|
||||
"mXmXmX1 2.a.L.P.I.Y.s.f A./././././.w XX$X%XtX%X#XOXoX$.$ mXmXmX",
|
||||
"mXmXmX7 ` p.p.a.0.W :.~./././././.~.0 OX+X@X@X@XOXoX.X).- mXmXmX",
|
||||
"mXmXmXmXD 1.F B 1.8.r.r.i.F.^././.~.P K.oXOXoXoX.X.X|.R.j mXmXmX",
|
||||
"mXmXmXmX= < ` r.r.r.r.r.r.r.8.D.^./.C.t ). X X X|.).R.Y.^ mXmXmX",
|
||||
"mXmXmX$ = t.y.6.y k z z u F r.r.r.J.W.=.~ ).).).R.T.Y.I.! mXmXmX",
|
||||
"mXmX$ & t.u.V b >XfXzXxXhX1Xl F r.r.F.E.*.' U.Y.Y.Y.I.L.7 mXmXmX",
|
||||
"mXmX$ ) g.S n dXnXnXnXnXnXnXnX4Xr 8.r.D.E.B.W q.I.L.L...1 mXmXmX",
|
||||
"mXmX$ p.p.> ;XdXnXnXnXnXnXnXnXnXlX5 6.r.J.W.Z.;._ ) F , mXmXmXmX",
|
||||
"mXmX< a.^ -X@ . ;XnXnXnXnXnXnXnXnXlX9 r.y.^./.~.E.E.W.K $ mXmXmX",
|
||||
"mXmX3 L.p dX@ . X gXnXnXnXnXbX=XdXnX6XZ r.D./././././.V.$ mXmXmX",
|
||||
"mXmXr I.c hXxXO . + nXnXnXnX# . *XnXnXn 8.r.^././././.~.$ mXmXmX",
|
||||
"mXmX9 U.g hXnXxXO . =XnXnXhX. . :XnXbXkXD r.F./././././.& mXmXmX",
|
||||
"mXmX= Y.~ gXnXnXxX+ . gXnX@ . ;XbXbXbXbXv t.i./././././.q mXmXmX",
|
||||
"mXmX, d.f.<XnXnXnXbX+ X o X ;XbXbXbXbXxXT u.r./././././.< mXmXmX",
|
||||
"mXmX, ~ ).c nXnXnXnXdX. . @ bXbXbXbXxXxXE p.u.!././././.& mXmXmX",
|
||||
"mXmXmX1 (.,.wXnXnXnXzX. . # bXbXxXxXxXzXE p.p.Q./.^.^.w.= mXmXmX",
|
||||
"mXmXmX1 ~ oXO.vXnXnXnX,X&XhXbXxXxXxXzXzXR a.p.J.!.^.!.d = mXmXmX",
|
||||
"mXmXmXmX6 j.`.O.nXnXbXbXbXxXxXxXzXzXzXhXo.G.a.Q.!.Q.-., mXmXmXmX",
|
||||
"mXmXmXmX7 i _.[.+.cXbXbXxXxXxXzXzXhXhXv.0.L.G.Q.Q.9.1 , mXmXmXmX",
|
||||
"mXmXmXmX1 2 N {.}.&.wXxXxXzXzXzXhXhX2X! I.P.H.S.W 1 1 mXmXmXmXmX",
|
||||
"mXmXmXmX6 1._ A ].sX'.n.3XkXhXhX6Xx.%.T.Y.P.| y 2 mXmXmXmXmXmXmX",
|
||||
"mXmXmXmXm 7.5._ M M.aXsX0XN.h.d.k.).|.T.3.M C .1 mXmXmXmXmXmXmX",
|
||||
"mXmXmXmX8 J 7.B 2 Z G M.qXyX%X@XOX|.g.S W } < y 1 mXmXmXmXmXmXmX",
|
||||
"mXmXmXmXM m B B mXmXmXD D D X.X.{ Z y } e.i.e = mXmXmXmXmXmXmXmX",
|
||||
"mXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmX= ( y.r.` = mXmXmXmXmXmXmXmX",
|
||||
"mXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXM 8.8.J , mXmXmXmXmXmXmXmX",
|
||||
"mXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXmXy B H 8 1 mXmXmXmXmXmXmXmX"
|
||||
};
|
@ -0,0 +1,45 @@
|
||||
/* XPM */
|
||||
static char * kandy_16_xpm[] = {
|
||||
"16 16 26 1",
|
||||
" c None",
|
||||
". c #0A0C08",
|
||||
"+ c #323331",
|
||||
"@ c #434344",
|
||||
"# c #993A3A",
|
||||
"$ c #496168",
|
||||
"% c #5F625E",
|
||||
"& c #356EA3",
|
||||
"* c #686469",
|
||||
"= c #16925A",
|
||||
"- c #6C6F6C",
|
||||
"; c #55828F",
|
||||
"> c #7B7D7B",
|
||||
", c #3E94AA",
|
||||
"' c #329CC1",
|
||||
") c #758391",
|
||||
"! c #918085",
|
||||
"~ c #5598C8",
|
||||
"{ c #898A8A",
|
||||
"] c #3BB7D4",
|
||||
"^ c #959595",
|
||||
"/ c #A3A4A3",
|
||||
"( c #5BD1EF",
|
||||
"_ c #B2B4B1",
|
||||
": c #BBBDBA",
|
||||
"< c #C8CAC7",
|
||||
" ",
|
||||
" ++ ",
|
||||
" +->*{^ ",
|
||||
" +:>>{^ ",
|
||||
" @<$~~* ",
|
||||
" +<~('$ ",
|
||||
" @:,]]$ ",
|
||||
" +:;];* ",
|
||||
" +:{){@ ",
|
||||
" +/@)^^ ",
|
||||
" @/)){/ ",
|
||||
" +_))^/ ",
|
||||
" +/))// ",
|
||||
" >/_/+ ",
|
||||
" ",
|
||||
" "};
|
@ -0,0 +1,77 @@
|
||||
/* XPM */
|
||||
static char * kandy_xpm[] = {
|
||||
"48 48 26 1",
|
||||
" c None",
|
||||
". c #0A0C08",
|
||||
"+ c #323331",
|
||||
"@ c #434344",
|
||||
"# c #993A3A",
|
||||
"$ c #496168",
|
||||
"% c #5F625E",
|
||||
"& c #356EA3",
|
||||
"* c #686469",
|
||||
"= c #16925A",
|
||||
"- c #6C6F6C",
|
||||
"; c #55828F",
|
||||
"> c #7B7D7B",
|
||||
", c #3E94AA",
|
||||
"' c #329CC1",
|
||||
") c #758391",
|
||||
"! c #918085",
|
||||
"~ c #5598C8",
|
||||
"{ c #898A8A",
|
||||
"] c #3BB7D4",
|
||||
"^ c #959595",
|
||||
"/ c #A3A4A3",
|
||||
"( c #5BD1EF",
|
||||
"_ c #B2B4B1",
|
||||
": c #BBBDBA",
|
||||
"< c #C8CAC7",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ++++++++ ",
|
||||
" ++@%*-*-*@+++ ",
|
||||
" +***-*----{{{{+ ",
|
||||
" +*>-%->*{*@>{{^^+ ",
|
||||
" +{/{-*->>>>{{^^/+ ",
|
||||
" +/:/{->>>{{>@{/^>+ ",
|
||||
" +_<:>->-@>{^{^/^*+ ",
|
||||
" +<<<{>>!>{^{))*{>+ ",
|
||||
" +<<<!{>>>)));'&$*+ ",
|
||||
" @<<<^!$))~~~~'~*>+ ",
|
||||
" +<<</{&~~((('''$>+ ",
|
||||
" @<<</^~((((''']$>+ ",
|
||||
" +<<<^^~(((('']]${+ ",
|
||||
" +<<<//'(((]]]]]$>+ ",
|
||||
" +<<<^/'((]']']]$>+ ",
|
||||
" @:<://,((]]]]]]${+ ",
|
||||
" +:<:!_;]]]]](((${+ ",
|
||||
" +<:<^/;]]]]]]((${+ ",
|
||||
" +:::^^;]]]]];$$*{+ ",
|
||||
" +<::^^$,,,$$)){{{+ ",
|
||||
" +:::^!%$$;>>{)%@{+ ",
|
||||
" +:::^{{){)*@{{=@^+ ",
|
||||
" +:/:^)*@{^*+^{%+{+ ",
|
||||
" +:::!!#+{{@+;$@{^+ ",
|
||||
" +/:/^!@+!)*@^%+^^+ ",
|
||||
" @:/_^!)*@{%+{@+^^+ ",
|
||||
" +/:/^^^*+)@+)*@^^+ ",
|
||||
" @/_/^^)@+)*@{*+/^+ ",
|
||||
" +/_/^^)*@^*+)@+^/+ ",
|
||||
" @_//!^^*+)@+)*@/^+ ",
|
||||
" +//_)/)@+)*@^*+//+ ",
|
||||
" @///!/)*@^*+)@+^/+ ",
|
||||
" +///>/!*+)@+)*@//+ ",
|
||||
" +!//!/)@+)*@////{+ ",
|
||||
" @*/^*/)*@///////@ ",
|
||||
" +{/-//_//^@///!+ ",
|
||||
" +*>*///__///!@+ ",
|
||||
" +@@****@@+++ ",
|
||||
" +@+++. ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" "};
|
@ -0,0 +1,159 @@
|
||||
/* XPM */
|
||||
static char *karm-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 137 2",
|
||||
" c black",
|
||||
". c gray3",
|
||||
"X c #090909",
|
||||
"o c gray5",
|
||||
"O c #191919",
|
||||
"+ c gray23",
|
||||
"@ c #414141",
|
||||
"# c gray28",
|
||||
"$ c #484848",
|
||||
"% c #4B4B4B",
|
||||
"& c #4C4C4C",
|
||||
"* c gray30",
|
||||
"= c #4E4E4E",
|
||||
"- c #505050",
|
||||
"; c gray32",
|
||||
": c #565656",
|
||||
"> c #5A5A5A",
|
||||
", c #5B5B5B",
|
||||
"< c #5D5D5D",
|
||||
"1 c #654D75",
|
||||
"2 c #606060",
|
||||
"3 c gray39",
|
||||
"4 c #656565",
|
||||
"5 c #686868",
|
||||
"6 c #6C6C6C",
|
||||
"7 c gray43",
|
||||
"8 c #797979",
|
||||
"9 c gray48",
|
||||
"0 c #6170A3",
|
||||
"q c #6B78AC",
|
||||
"w c #697CB9",
|
||||
"e c #4469E0",
|
||||
"r c #496EE1",
|
||||
"t c #4E73E2",
|
||||
"y c #5177E4",
|
||||
"u c #567DE6",
|
||||
"i c #6079D6",
|
||||
"p c #788CBE",
|
||||
"a c #5C83E8",
|
||||
"s c #6189EB",
|
||||
"d c #6890ED",
|
||||
"f c #7297ED",
|
||||
"g c #7993E8",
|
||||
"h c #7BA6F5",
|
||||
"j c #AB534B",
|
||||
"k c #F8534B",
|
||||
"l c #E06864",
|
||||
"z c #848484",
|
||||
"x c #868686",
|
||||
"c c #898989",
|
||||
"v c #8B8B8B",
|
||||
"b c gray55",
|
||||
"n c #8D8D8D",
|
||||
"m c #8E8E8E",
|
||||
"M c gray56",
|
||||
"N c #909090",
|
||||
"B c #929292",
|
||||
"V c #959595",
|
||||
"C c gray59",
|
||||
"Z c #8B98BD",
|
||||
"A c #B58080",
|
||||
"S c #A0A0A0",
|
||||
"D c #A2A2A2",
|
||||
"F c #A7A7A7",
|
||||
"G c gray66",
|
||||
"H c #AAAAAA",
|
||||
"J c gray67",
|
||||
"K c #AEAEAE",
|
||||
"L c #B1B1B1",
|
||||
"P c #B0B5B9",
|
||||
"I c #B9B9B9",
|
||||
"U c #859CCA",
|
||||
"Y c #869AD5",
|
||||
"T c #9BACC8",
|
||||
"R c #93A8DA",
|
||||
"E c #8DA7EE",
|
||||
"W c #8BAEE2",
|
||||
"Q c #81ABF6",
|
||||
"! c #86A9F2",
|
||||
"~ c #91B9F9",
|
||||
"^ c #9BB5F2",
|
||||
"/ c #A3BDE2",
|
||||
"( c #A7B9F1",
|
||||
") c #A4BFF6",
|
||||
"_ c #A8BDF3",
|
||||
"` c #ABBEF2",
|
||||
"' c #B9C8D8",
|
||||
"] c #A7C3F7",
|
||||
"[ c #B2C9F7",
|
||||
"{ c #B6CCF8",
|
||||
"} c #BBCBF5",
|
||||
"| c #BBD1F9",
|
||||
" . c #BED5FB",
|
||||
".. c #FE8D8D",
|
||||
"X. c #FEB1B1",
|
||||
"o. c gray76",
|
||||
"O. c gray77",
|
||||
"+. c #C5C5C5",
|
||||
"@. c gray79",
|
||||
"#. c #CACACA",
|
||||
"$. c gray80",
|
||||
"%. c #D0D0D0",
|
||||
"&. c LightGray",
|
||||
"*. c gray84",
|
||||
"=. c #D7D6D6",
|
||||
"-. c #D7D7D7",
|
||||
";. c #D8D8D8",
|
||||
":. c #DDDDDD",
|
||||
">. c #C8D2E0",
|
||||
",. c #C8D3E3",
|
||||
"<. c #CAD7F8",
|
||||
"1. c #DBDDE0",
|
||||
"2. c #D3E2FC",
|
||||
"3. c #D1E4FE",
|
||||
"4. c #D6E8FE",
|
||||
"5. c #DBE7F7",
|
||||
"6. c gray88",
|
||||
"7. c gray89",
|
||||
"8. c #E4E3E3",
|
||||
"9. c gray92",
|
||||
"0. c #E1EEFE",
|
||||
"q. c #E4EDFC",
|
||||
"w. c #E4F1FE",
|
||||
"e. c #E7F2FE",
|
||||
"r. c #EDF6FE",
|
||||
"t. c #EEF6FE",
|
||||
"y. c #FEEBEB",
|
||||
"u. c #F1F1F1",
|
||||
"i. c gray95",
|
||||
"p. c #F5F9FE",
|
||||
"a. c #FBFBFB",
|
||||
"s. c #F9FCFE",
|
||||
"d. c #FBFCFE",
|
||||
"f. c #FDFDFE",
|
||||
"g. c #FEFEFE",
|
||||
"h. c gray100",
|
||||
"j. c None",
|
||||
/* pixels */
|
||||
"j.j.j.g.) T .| { [ f j.j.j.j.j.",
|
||||
"j.j.s.r.R =.g.g.g.g.^ j.j.j.j.j.",
|
||||
"j.g.e.0.Y 7.g.g.g.g._ j.j.j.j.j.",
|
||||
"g.s.e.r.i #.g.g.g.g.E j.j.j.j.j.",
|
||||
"W U p w q #.7.%.F %.Z o j.j.j.j.",
|
||||
"/ 7.7.i.a.$.x 5 $ @ $ : ; j.j.j.",
|
||||
"~ g.g.g.%.7 > O B . O.> > 4 j.j.",
|
||||
"Q 2.g.i.S - 5 L -.g.g.& C < ; j.",
|
||||
"h ] p.:.B $ & g.X.y.K D > 7 3 j.",
|
||||
"j.! p.,.3 B g.g...l c g.g.F 9 j.",
|
||||
"j.d q.,.9 . g.C 7 1 :.g.-.+ c j.",
|
||||
"j.s <.5.z C O.g.g.X...g.9.-.B j.",
|
||||
"j.a _ 4.P > v g.g.g.k g.> D c j.",
|
||||
"j.u } 3.' F O.+ g.L X.j -.O.$ j.",
|
||||
"j.y ` ( g 0 I v -.< :.A #.7 j.j.",
|
||||
"j.t r e j.j.& F F -.I K & j.j.j."
|
||||
};
|
@ -0,0 +1,183 @@
|
||||
/* XPM */
|
||||
static char *karm[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 145 2",
|
||||
" c black",
|
||||
". c #0C0C0C",
|
||||
"X c #131313",
|
||||
"o c #1E1E1E",
|
||||
"O c gray13",
|
||||
"+ c gray17",
|
||||
"@ c #353535",
|
||||
"# c #3B3B3B",
|
||||
"$ c #14387B",
|
||||
"% c #2C3966",
|
||||
"& c #492C6E",
|
||||
"* c #454545",
|
||||
"= c #4B4B4B",
|
||||
"- c #545454",
|
||||
"; c #5C5C5C",
|
||||
": c #464E65",
|
||||
"> c #656565",
|
||||
", c #626368",
|
||||
"< c #6C6C6C",
|
||||
"1 c #6F7376",
|
||||
"2 c #757575",
|
||||
"3 c #777A7D",
|
||||
"4 c #7C7C7C",
|
||||
"5 c #3A5EDB",
|
||||
"6 c #3E62DC",
|
||||
"7 c #465EBE",
|
||||
"8 c #5C7293",
|
||||
"9 c #4F65BC",
|
||||
"0 c #556DA1",
|
||||
"q c #576EBC",
|
||||
"w c #61799C",
|
||||
"e c #6E79A8",
|
||||
"r c #6274B6",
|
||||
"t c #687AB8",
|
||||
"y c #4B65C8",
|
||||
"u c #4266DD",
|
||||
"i c #4469DE",
|
||||
"p c #4A6EDB",
|
||||
"a c #506DDD",
|
||||
"s c #5570CB",
|
||||
"d c #476CE0",
|
||||
"f c #4A6FE1",
|
||||
"g c #4E74E2",
|
||||
"h c #5075E3",
|
||||
"j c #547AE4",
|
||||
"k c #587FE7",
|
||||
"l c #607CCF",
|
||||
"z c #7F8188",
|
||||
"x c #6E81BB",
|
||||
"c c #7487BD",
|
||||
"v c #7A8FBF",
|
||||
"b c #5A81E7",
|
||||
"n c #5C84E8",
|
||||
"m c #6A87D3",
|
||||
"M c #7492D7",
|
||||
"N c #6484E4",
|
||||
"B c #6087E9",
|
||||
"V c #638BEB",
|
||||
"C c #6B92EC",
|
||||
"Z c #6E98F0",
|
||||
"A c #7594E9",
|
||||
"S c #7995E8",
|
||||
"D c #7B9BEC",
|
||||
"F c #739BF1",
|
||||
"G c #76A0F2",
|
||||
"H c #79A4F4",
|
||||
"J c #7FA9F6",
|
||||
"K c #AB1913",
|
||||
"L c #8D6B6B",
|
||||
"P c #FB0A08",
|
||||
"I c #FE1F1F",
|
||||
"U c #FE4B4B",
|
||||
"Y c #F8746B",
|
||||
"T c #828282",
|
||||
"R c #8C8C8C",
|
||||
"E c #818D9A",
|
||||
"W c #939394",
|
||||
"Q c #989797",
|
||||
"! c #9B9B9B",
|
||||
"~ c #A3A3A3",
|
||||
"^ c #AAAAAA",
|
||||
"/ c #B3B2B2",
|
||||
"( c #BBBBBB",
|
||||
") c #838DC2",
|
||||
"_ c #809FED",
|
||||
"` c #81A0DB",
|
||||
"' c #83A1ED",
|
||||
"] c #8BAEE6",
|
||||
"[ c #86A5F0",
|
||||
"{ c #82AEF7",
|
||||
"} c #8EABF0",
|
||||
"| c #85B1F8",
|
||||
" . c #88B3F9",
|
||||
".. c #8CB8FB",
|
||||
"X. c #94A9EC",
|
||||
"o. c #98ACED",
|
||||
"O. c #93AEF0",
|
||||
"+. c #90BCFC",
|
||||
"@. c #9EB2F0",
|
||||
"#. c #9AB8F5",
|
||||
"$. c #AAB5C0",
|
||||
"%. c #AFBCDE",
|
||||
"&. c #B2BCC8",
|
||||
"*. c #A3B8F1",
|
||||
"=. c #93C0FD",
|
||||
"-. c #B6C2D0",
|
||||
";. c #BCC8D7",
|
||||
":. c #A3C2F7",
|
||||
">. c #A3C2F8",
|
||||
",. c #AEC4F5",
|
||||
"<. c #ACCBFB",
|
||||
"1. c #BBCAF5",
|
||||
"2. c #B1D3FE",
|
||||
"3. c #B8D6FE",
|
||||
"4. c #FE8D8D",
|
||||
"5. c #FEB1B1",
|
||||
"6. c #F8BCB1",
|
||||
"7. c #C2C2C2",
|
||||
"8. c #CACACA",
|
||||
"9. c #D4D4D4",
|
||||
"0. c #DBDBDB",
|
||||
"q. c #C5D6ED",
|
||||
"w. c #C6DEFE",
|
||||
"e. c #CBD6F6",
|
||||
"r. c #C8D8F9",
|
||||
"t. c #D1DBE7",
|
||||
"y. c #D0DEF9",
|
||||
"u. c #CBE1FE",
|
||||
"i. c #D7E1ED",
|
||||
"p. c #D4E3FB",
|
||||
"a. c #D6E8FE",
|
||||
"s. c #D8E4FB",
|
||||
"d. c #DCEBFD",
|
||||
"f. c #FED7D7",
|
||||
"g. c #E3E3E3",
|
||||
"h. c #ECECEC",
|
||||
"j. c #E2EDFD",
|
||||
"k. c #E4F0FE",
|
||||
"l. c #EBF3FE",
|
||||
"z. c #FBF0EB",
|
||||
"x. c #F3F3F3",
|
||||
"c. c #F1F5FD",
|
||||
"v. c #F5F9FD",
|
||||
"b. c #FEFEFE",
|
||||
"n. c None",
|
||||
/* pixels */
|
||||
"n.n.n.n.n.n.n.n.n.:.Z 8 | { J H G F Z Z C V V n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.n.n.n.n.n.n.b.p.M ~ b.b.b.b.b.b.j.s.s.[ B n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.n.n.n.n.v.j.v.,.v / b.b.b.b.b.b.b.b.b.} n n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.n.n.n.b.l.d.v.X.c 8.b.b.b.b.b.b.b.b.b.' n.n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.n.n.b.v.d.w.b.S x 8.b.b.b.b.b.b.b.b.b.D n.n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.n.k.v.j.u.2.b.S t 8.b.b.b.b.b.b.b.b.b.D n.n.n.n.n.n.n.n.n.n.",
|
||||
"n.n.w.v.v.k.d.a.b.X.r ^ b.b.b.b.b.b.b.b.b.' j n.n.n.n.n.n.n.n.n.",
|
||||
"n.3.d.d.s.p.1.@.o.a 7 ^ b.b.b.b.b.b.b.b.b.*.g n.n.n.n.n.n.n.n.n.",
|
||||
"n.=.] ` M m s s y 9 e Q b.b.h.0.9.7.7.8.9.%.p n.n.n.n.n.n.n.n.n.",
|
||||
"n.w W Q Q Q ^ / / / / ( x.9.( 7.R T 2 < 3 , : # . n.n.n.n.n.n.n.",
|
||||
"n...p.b.b.b.b.b.b.b.b.g.7.( R < < - ; = = - - ; ; = . n.n.n.n.n.",
|
||||
"n...<.b.b.b.b.b.b.b.g.7./ < < - - 4 2 < # Q 4 - - ; ; @ n.n.n.n.",
|
||||
"n. .| b.b.b.b.b.b.x.( / 2 < - + ~ 9.9.; O 9.b.( < = ; > @ n.n.n.",
|
||||
"n.n.{ p.b.b.b.b.b.8.7.< < - 7.= R / b.R < 9.b.R ~ ~ - > - . n.n.",
|
||||
"n.n.J >.b.b.b.b.x.7.R 2 = / 9./ 0.9.b.b.b.b.b.9.+ 8.9.; < = n.n.",
|
||||
"n.n.J H c.b.b.b.0.7.< < + # # b.b.b.b.b.b.b.b.3 ! b.# 2 > < . n.",
|
||||
"n.n.n.H r.b.v.b.9.R T ; ~ ; # b.b.b.5.z.b.b.R T b.b.o 7.< 4 * n.",
|
||||
"n.n.n.F #.b.l.k.&.3 T 4 b.b.b.b.b.b.I Y b.^ > b.b.h./ h.^ T - n.",
|
||||
"n.n.n.C F b.l.k./ 1 T ( b.b.b.b.b.b.4.P 9.- h.b.b.b.b.b.9.4 > n.",
|
||||
"n.n.n.n.C p.v.j.-.1 4 ; + b.b.b.b.b.7.) 0 ( b.b.b.b.9.X 9.4 T . ",
|
||||
"n.n.n.n.V ,.b.d.;.L R ; b.b./ - @ ; $ & h.b.b.b.b.0.o 7.R R . ",
|
||||
"n.n.n.n.V [ b.d.t.8 Q 8.b.b.b.9.9.b.b.b.U 6.b.b.b.b.b.b.g.Q < n.",
|
||||
"n.n.n.n.n D b.j.k.4 / T 7.~ b.b.b.b.b.b.f.U b.b.b.b.b.b.7.^ < n.",
|
||||
"n.n.n.n.n b b.j.d.~ / T < # b.b.b.b.b.b.b.U f.b.b.b.+ b.^ ( - n.",
|
||||
"n.n.n.n.b k b.d.p.q.R ~ < 8 b.b.b.b.b.b.b.f.U b.b.7.X / / ~ o n.",
|
||||
"n.n.n.n.k j b.d.u.u.z 9.W h.b.R < b.b.b.b.b.U L / b.v.^ 9.; n.n.",
|
||||
"n.n.n.n.j C b.d.a.d.i.R g.T z.R / b.b.! 7.b.f.K R x.( 0.Q . n.n.",
|
||||
"n.n.n.n.j S b.b.c.e.o.q T 9.W 4 b.b.b.X < b.b.Y Q ( g.! O n.n.n.",
|
||||
"n.n.n.n.g j A N u u 6 5 % 3 0.8.^ 7.g.R 7.x.9.7.8.h.Q O n.n.n.n.",
|
||||
"n.n.n.n.g f i u u n.n.n.n.. * ~ h.g.9./ / 9.g.h.( > . n.n.n.n.n.",
|
||||
"n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.. # 4 T / / Q T = o n.n.n.n.n.n.n.",
|
||||
"n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n.n."
|
||||
};
|
@ -0,0 +1,257 @@
|
||||
/* XPM */
|
||||
static char *kmail-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 235 2",
|
||||
" c #010101",
|
||||
". c #020202",
|
||||
"X c gray1",
|
||||
"o c #000004",
|
||||
"O c #000307",
|
||||
"+ c #020105",
|
||||
"@ c #040304",
|
||||
"# c #060505",
|
||||
"$ c #070504",
|
||||
"% c #020208",
|
||||
"& c #05080F",
|
||||
"* c #080A0D",
|
||||
"= c #080A0E",
|
||||
"- c #0A090C",
|
||||
"; c #0A090E",
|
||||
": c #0E0C0B",
|
||||
"> c #0F0C0B",
|
||||
", c #0E0C0C",
|
||||
"< c #0F0D0D",
|
||||
"1 c #070911",
|
||||
"2 c #060B11",
|
||||
"3 c #070C10",
|
||||
"4 c #070C12",
|
||||
"5 c #070D12",
|
||||
"6 c #0B0C10",
|
||||
"7 c #0B0D10",
|
||||
"8 c #0E0E11",
|
||||
"9 c #110F0D",
|
||||
"0 c #100F0F",
|
||||
"q c #110F0F",
|
||||
"w c #121010",
|
||||
"e c #131111",
|
||||
"r c #131112",
|
||||
"t c #131212",
|
||||
"y c #141110",
|
||||
"u c #151211",
|
||||
"i c #141212",
|
||||
"p c #171313",
|
||||
"a c #151014",
|
||||
"s c #161315",
|
||||
"d c #171415",
|
||||
"f c #11131D",
|
||||
"g c #15161D",
|
||||
"h c #191316",
|
||||
"j c #181415",
|
||||
"k c #1A1416",
|
||||
"l c #1D1A1A",
|
||||
"z c #1D1A1B",
|
||||
"x c #171920",
|
||||
"c c #181925",
|
||||
"v c #1B1C2E",
|
||||
"b c #1C1F28",
|
||||
"n c #1D1E2F",
|
||||
"m c #211D1C",
|
||||
"M c #241F20",
|
||||
"N c #353847",
|
||||
"B c #442519",
|
||||
"V c #482512",
|
||||
"C c #4F2917",
|
||||
"Z c #582208",
|
||||
"A c #582308",
|
||||
"S c #5A2608",
|
||||
"D c #592B16",
|
||||
"F c #603420",
|
||||
"G c #664427",
|
||||
"H c #66412C",
|
||||
"J c #68492D",
|
||||
"K c #6D5231",
|
||||
"L c #7B5937",
|
||||
"P c #464957",
|
||||
"I c #58504C",
|
||||
"U c #505267",
|
||||
"Y c #5B5D62",
|
||||
"T c #786042",
|
||||
"R c #626271",
|
||||
"E c #6E6D7E",
|
||||
"W c #707073",
|
||||
"Q c #7D7F87",
|
||||
"! c #84400A",
|
||||
"~ c #825213",
|
||||
"^ c #975E01",
|
||||
"/ c #814B2E",
|
||||
"( c #82562E",
|
||||
") c #85532B",
|
||||
"_ c #85612C",
|
||||
"` c #AA5201",
|
||||
"' c #AF6B00",
|
||||
"] c #AC6515",
|
||||
"[ c #BD6409",
|
||||
"{ c #C47400",
|
||||
"} c #C37517",
|
||||
"| c #D16413",
|
||||
" . c #DE6D1C",
|
||||
".. c #DA741C",
|
||||
"X. c #DF711C",
|
||||
"o. c #DF7E12",
|
||||
"O. c #C96427",
|
||||
"+. c #EF7B04",
|
||||
"@. c #E47316",
|
||||
"#. c #F67800",
|
||||
"$. c #F97B04",
|
||||
"%. c #BE8618",
|
||||
"&. c #968778",
|
||||
"*. c #C98106",
|
||||
"=. c #DD8116",
|
||||
"-. c #CC9732",
|
||||
";. c #D58F2D",
|
||||
":. c #D28C38",
|
||||
">. c #D58D3B",
|
||||
",. c #DE8B33",
|
||||
"<. c #E59A0D",
|
||||
"1. c #FF8500",
|
||||
"2. c #F88B00",
|
||||
"3. c #FF8E00",
|
||||
"4. c #FF9900",
|
||||
"5. c #FF9A00",
|
||||
"6. c #F49717",
|
||||
"7. c #F89413",
|
||||
"8. c #FF931F",
|
||||
"9. c #F68527",
|
||||
"0. c #F19322",
|
||||
"q. c #F19A2A",
|
||||
"w. c #FCA600",
|
||||
"e. c #F3A118",
|
||||
"r. c #FFB10A",
|
||||
"t. c #FFB50E",
|
||||
"y. c #E8A136",
|
||||
"u. c #F3AE2E",
|
||||
"i. c #FFB420",
|
||||
"p. c #FFB82A",
|
||||
"a. c #FFBC2C",
|
||||
"s. c #F9BD37",
|
||||
"d. c #CAA34A",
|
||||
"f. c #D4B678",
|
||||
"g. c #EEAB5D",
|
||||
"h. c #F6A742",
|
||||
"j. c #FFC530",
|
||||
"k. c #FFC33D",
|
||||
"l. c #FEC73E",
|
||||
"z. c #FFC140",
|
||||
"x. c #FEC741",
|
||||
"c. c #F9CE4C",
|
||||
"v. c #F3C25C",
|
||||
"b. c #FFD245",
|
||||
"n. c #FFD352",
|
||||
"m. c #F0CD67",
|
||||
"M. c #FBD770",
|
||||
"N. c #FFDA70",
|
||||
"B. c #FFE578",
|
||||
"V. c #9B8F83",
|
||||
"C. c #9A9AA0",
|
||||
"Z. c #9AA0AA",
|
||||
"A. c #B4A694",
|
||||
"S. c #A4A5A9",
|
||||
"D. c #AAABAA",
|
||||
"F. c #B7B7B7",
|
||||
"G. c #B3B4BA",
|
||||
"H. c #BBBAB8",
|
||||
"J. c gray73",
|
||||
"K. c gray",
|
||||
"L. c #BCBEC9",
|
||||
"P. c #DBB295",
|
||||
"I. c #CBBED6",
|
||||
"U. c #F0CE91",
|
||||
"Y. c #F9DB83",
|
||||
"T. c #E9CDA2",
|
||||
"R. c #EDCDAC",
|
||||
"E. c #EAD0B0",
|
||||
"W. c #FEE58E",
|
||||
"Q. c #FDF1B8",
|
||||
"!. c #C5C5C4",
|
||||
"~. c #C4C5CC",
|
||||
"^. c #CACAC9",
|
||||
"/. c #CACACA",
|
||||
"(. c #CBCBCB",
|
||||
"). c #CDCDCC",
|
||||
"_. c #CDC1D8",
|
||||
"`. c #CCCAD7",
|
||||
"'. c #D0C9C9",
|
||||
"]. c #D2D2D2",
|
||||
"[. c LightGray",
|
||||
"{. c #D4D4DA",
|
||||
"}. c #DADADA",
|
||||
"|. c #DDDDDC",
|
||||
" X c #DDDDDD",
|
||||
".X c #DFDFDE",
|
||||
"XX c #DAD2E1",
|
||||
"oX c #DBD3E1",
|
||||
"OX c #DDD5E4",
|
||||
"+X c #EFE7CC",
|
||||
"@X c #F7EDD2",
|
||||
"#X c gray88",
|
||||
"$X c #E1E2E1",
|
||||
"%X c #E3E2E4",
|
||||
"&X c #E4E4E4",
|
||||
"*X c #E6E6E6",
|
||||
"=X c #E7E7E8",
|
||||
"-X c #E6E8EA",
|
||||
";X c #E7E9ED",
|
||||
":X c #E8E8E7",
|
||||
">X c #ECE9E5",
|
||||
",X c #EAEAEA",
|
||||
"<X c #EBEAEA",
|
||||
"1X c gray92",
|
||||
"2X c #E9EBEF",
|
||||
"3X c #ECECEC",
|
||||
"4X c gray93",
|
||||
"5X c #EEECEF",
|
||||
"6X c #EFEFEF",
|
||||
"7X c #EDEFF3",
|
||||
"8X c #EFF5F6",
|
||||
"9X c #F0F0EF",
|
||||
"0X c gray94",
|
||||
"qX c #F1F1F1",
|
||||
"wX c #F0F0F2",
|
||||
"eX c #F1F1F3",
|
||||
"rX c #F2F1F3",
|
||||
"tX c gray95",
|
||||
"yX c #F3F2F2",
|
||||
"uX c #F3F3F3",
|
||||
"iX c #F3F6F7",
|
||||
"pX c gray96",
|
||||
"aX c #F6F5F6",
|
||||
"sX c #F8F8F9",
|
||||
"dX c #F8F9F8",
|
||||
"fX c #F9FBF9",
|
||||
"gX c gray98",
|
||||
"hX c #FBFBFB",
|
||||
"jX c #F8F9FC",
|
||||
"kX c #F8FFFF",
|
||||
"lX c #F9FEFF",
|
||||
"zX c #FDFFFF",
|
||||
"xX c #FEFFFF",
|
||||
"cX c gray100",
|
||||
"vX c None",
|
||||
/* pixels */
|
||||
"vXvXvXvXaXW I R.R.T.U.T vXvXvXvX",
|
||||
"vXvXvXOX%XrX'.P.@XQ.W.v.J 2 vXvX",
|
||||
"vXvXvXXX&XdXxXrX>X+XY.n.u.G & vX",
|
||||
"vXvXyXrX9XpXxXxXjX`.f.s.t.6.H 7 ",
|
||||
"vXvX4XaX6XaXsXrX3XA.d.m.x.a.>.a ",
|
||||
"vXiX*XrXrX,X1X8X{.( -.c.r.5...h ",
|
||||
"vX=X1XfX6X,X6X6XV.K ] e.2.$.O.h ",
|
||||
"8X=XrX4X}.|.4X~._ *.;.@.6.0.L 8 ",
|
||||
"Z.H.J.F.K.|.;X&.^ *.h.B.l.a.:.d ",
|
||||
"b D.%X^.[.=XL.) ' ` y.b.w.3.X.h ",
|
||||
"# Y .X^.[.$XE ! { } | 2.#.@./ t ",
|
||||
"vXg S.^.).G.n V [ <.h.9.8.q.K < ",
|
||||
"vXvXP F.!.R + + C =.N.B.j.i.,.s ",
|
||||
"vXvXf Q C.v $ @ . F g.k.5.1. .h ",
|
||||
"vXvXvXN U * : X . & B S A A D d ",
|
||||
"vXvXvXg c 9 : . vXvX& 5 5 5 = 0 "
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kmail[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #080707",
|
||||
". c #0C0A0B",
|
||||
"X c gray2",
|
||||
"o c #110F0F",
|
||||
"O c #131011",
|
||||
"+ c #181516",
|
||||
"@ c #1A1718",
|
||||
"# c #1C191A",
|
||||
"$ c #1B1828",
|
||||
"% c #181727",
|
||||
"& c #121A3D",
|
||||
"* c #211D1E",
|
||||
"= c #231F20",
|
||||
"- c #31241E",
|
||||
"; c #342926",
|
||||
": c #3C2B24",
|
||||
"> c #141F51",
|
||||
", c #20265F",
|
||||
"< c #203055",
|
||||
"1 c #323B4C",
|
||||
"2 c #333C57",
|
||||
"3 c #2A2C62",
|
||||
"4 c #222B66",
|
||||
"5 c #2C3860",
|
||||
"6 c #354877",
|
||||
"7 c #4A3630",
|
||||
"8 c #6C3100",
|
||||
"9 c #7B3E00",
|
||||
"0 c #443F75",
|
||||
"q c #7D400B",
|
||||
"w c #604C3E",
|
||||
"e c #56585C",
|
||||
"r c #444B65",
|
||||
"t c #5B5D74",
|
||||
"y c #6D484D",
|
||||
"u c #6E574A",
|
||||
"i c #705147",
|
||||
"p c #7E604A",
|
||||
"a c #7A6255",
|
||||
"s c gray39",
|
||||
"d c #79797A",
|
||||
"f c #404E83",
|
||||
"g c #485185",
|
||||
"h c #6C6D82",
|
||||
"j c #747181",
|
||||
"k c #76758B",
|
||||
"l c #787587",
|
||||
"z c #767881",
|
||||
"x c #903200",
|
||||
"c c #A73500",
|
||||
"v c #8E4601",
|
||||
"b c #9D450C",
|
||||
"n c #9F4C10",
|
||||
"m c #974A1A",
|
||||
"M c #8D4826",
|
||||
"N c #835E2A",
|
||||
"B c #994C27",
|
||||
"V c #9C6602",
|
||||
"C c #996B18",
|
||||
"Z c #A95601",
|
||||
"A c #A25113",
|
||||
"S c #B15900",
|
||||
"D c #BE5F00",
|
||||
"F c #B05502",
|
||||
"G c #A3532C",
|
||||
"H c #AC5731",
|
||||
"J c #A26600",
|
||||
"K c #A66800",
|
||||
"L c #A76F0A",
|
||||
"P c #AB6800",
|
||||
"I c #A16E11",
|
||||
"U c #AE7003",
|
||||
"Y c #B26B00",
|
||||
"T c #BB6D00",
|
||||
"R c #BA7400",
|
||||
"E c #AB7C38",
|
||||
"W c #90745D",
|
||||
"Q c #A36F57",
|
||||
"! c #BE7D59",
|
||||
"~ c #AF7962",
|
||||
"^ c #B07C62",
|
||||
"/ c #CF4F00",
|
||||
"( c #C56403",
|
||||
") c #C17100",
|
||||
"_ c #CF7100",
|
||||
"` c #CA7B01",
|
||||
"' c #C27903",
|
||||
"] c #D16E01",
|
||||
"[ c #DE7807",
|
||||
"{ c #DB7913",
|
||||
"} c #C66622",
|
||||
"| c #C0643D",
|
||||
" . c #DB743E",
|
||||
".. c #E56A00",
|
||||
"X. c #E96100",
|
||||
"o. c #EC6F00",
|
||||
"O. c #E37A00",
|
||||
"+. c #EA7400",
|
||||
"@. c #E87800",
|
||||
"#. c #E47719",
|
||||
"$. c #F46800",
|
||||
"%. c #FB6900",
|
||||
"&. c #F47300",
|
||||
"*. c #F37C00",
|
||||
"=. c #FF7600",
|
||||
"-. c #FD7B00",
|
||||
";. c #F9780F",
|
||||
":. c #E37621",
|
||||
">. c #E1773E",
|
||||
",. c #C56840",
|
||||
"<. c #C26F48",
|
||||
"1. c #C37556",
|
||||
"2. c #E17C42",
|
||||
"3. c #BC8011",
|
||||
"4. c #B58329",
|
||||
"5. c #BF9537",
|
||||
"6. c #B48A56",
|
||||
"7. c #AB927B",
|
||||
"8. c #BA8765",
|
||||
"9. c #CC890C",
|
||||
"0. c #C48511",
|
||||
"q. c #DC8F07",
|
||||
"w. c #DE9205",
|
||||
"e. c #C0953A",
|
||||
"r. c #D6952A",
|
||||
"t. c #D19839",
|
||||
"y. c #D9A638",
|
||||
"u. c #E58615",
|
||||
"i. c #F28800",
|
||||
"p. c #FD8400",
|
||||
"a. c #FE8E00",
|
||||
"s. c #FF8F0F",
|
||||
"d. c #FF840F",
|
||||
"f. c #FE8A10",
|
||||
"g. c #FD9300",
|
||||
"h. c #FC940E",
|
||||
"j. c #FD9B00",
|
||||
"k. c #F39200",
|
||||
"l. c #E08530",
|
||||
"z. c #E18838",
|
||||
"x. c #E0833C",
|
||||
"c. c #E39221",
|
||||
"v. c #E89B33",
|
||||
"b. c #F38823",
|
||||
"n. c #F2993F",
|
||||
"m. c #EBA118",
|
||||
"M. c #FEA300",
|
||||
"N. c #FEAA00",
|
||||
"B. c #FDAE0A",
|
||||
"V. c #FEA40E",
|
||||
"C. c #F2A519",
|
||||
"Z. c #FEB30A",
|
||||
"A. c #FDB211",
|
||||
"S. c #FEB815",
|
||||
"D. c #FFBD19",
|
||||
"F. c #E3A439",
|
||||
"G. c #F5AF22",
|
||||
"H. c #FBAD32",
|
||||
"J. c #FAB22D",
|
||||
"K. c #FDBB22",
|
||||
"L. c #FEB53B",
|
||||
"P. c #FEBC35",
|
||||
"I. c #FBBC3C",
|
||||
"U. c #F7B234",
|
||||
"Y. c #DE804A",
|
||||
"T. c #DD9552",
|
||||
"R. c #C08E6A",
|
||||
"E. c #D89761",
|
||||
"W. c #D1A748",
|
||||
"Q. c #E28042",
|
||||
"!. c #E48844",
|
||||
"~. c #E7A855",
|
||||
"^. c #EBB749",
|
||||
"/. c #F6AF40",
|
||||
"(. c #FDBD4A",
|
||||
"). c #F5B74A",
|
||||
"_. c #EAA546",
|
||||
"`. c #E5AE67",
|
||||
"'. c #E5B273",
|
||||
"]. c #EEB773",
|
||||
"[. c #D1AE6D",
|
||||
"{. c #FEC52E",
|
||||
"}. c #F7C338",
|
||||
"|. c #FEC53B",
|
||||
" X c #FDC93C",
|
||||
".X c #DBC37B",
|
||||
"XX c #FFC44F",
|
||||
"oX c #FECF41",
|
||||
"OX c #F9C64A",
|
||||
"+X c #FFCA54",
|
||||
"@X c #FDCC5B",
|
||||
"#X c #FFC554",
|
||||
"$X c #F9D15C",
|
||||
"%X c #E9C868",
|
||||
"&X c #E3CB78",
|
||||
"*X c #FEC965",
|
||||
"=X c #F4D069",
|
||||
"-X c #FED466",
|
||||
";X c #FED968",
|
||||
":X c #FCDA74",
|
||||
">X c #FDDC7C",
|
||||
",X c #FED277",
|
||||
"<X c #FFE17B",
|
||||
"1X c #878787",
|
||||
"2X c #948F98",
|
||||
"3X c #939393",
|
||||
"4X c #9C9C9C",
|
||||
"5X c #9A95A0",
|
||||
"6X c #9AA2B9",
|
||||
"7X c gray64",
|
||||
"8X c #AAAAAA",
|
||||
"9X c #ADA0BA",
|
||||
"0X c #B4B4B4",
|
||||
"qX c #BABABA",
|
||||
"wX c #D8A680",
|
||||
"eX c #CCBFD7",
|
||||
"rX c #DFC5BD",
|
||||
"tX c #F3D980",
|
||||
"yX c #EDDEAE",
|
||||
"uX c #FFE484",
|
||||
"iX c #FEE789",
|
||||
"pX c #FCE590",
|
||||
"aX c #FEE994",
|
||||
"sX c #FEEBA1",
|
||||
"dX c #F4E8B7",
|
||||
"fX c #FFF0A3",
|
||||
"gX c #FEF6BA",
|
||||
"hX c #C4C4C4",
|
||||
"jX c #CCCCCC",
|
||||
"kX c #D3CCD8",
|
||||
"lX c #D4D4D4",
|
||||
"zX c #D7D7D9",
|
||||
"xX c #DBDBDB",
|
||||
"cX c #DEDBE3",
|
||||
"vX c #DFD6E2",
|
||||
"bX c #E1CBC5",
|
||||
"nX c #E4D9D3",
|
||||
"mX c #E0DCE3",
|
||||
"MX c #F9EBC7",
|
||||
"NX c #F3EED5",
|
||||
"BX c #F7F2D7",
|
||||
"VX c #FDFDD4",
|
||||
"CX c #F9F0D8",
|
||||
"ZX c #E3E3E3",
|
||||
"AX c #E8E2E9",
|
||||
"SX c #EAEAEA",
|
||||
"DX c #E6E2E8",
|
||||
"FX c #EEEBF2",
|
||||
"GX c #ECF0F6",
|
||||
"HX c #F9F0E4",
|
||||
"JX c #FFFFEA",
|
||||
"KX c #F3F3F3",
|
||||
"LX c #F6FEFE",
|
||||
"PX c #FCFAF3",
|
||||
"IX c #FEFEFE",
|
||||
"UX c #F2F7FA",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXIXYXYXYXPXPXHXHXHXCXMXMXdX= = YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXIXFXAXKX= wXT.'.'.`.`.~.~.~.R.= = = YXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXAXjXmXzXZXbX2.PXIXJXVXgXfX<XF.8.= = = YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXIXxXlXIXPXmXcXrXdXBXVXgXsXtX>X$Xv.8.= = = YXYXYX",
|
||||
"YXYXYXYXYXYXYXeXkXSXxXIXIXIXPXZXlXnXNXdXpXtX;X+X Xc.~ = = = YXYX",
|
||||
"YXYXYXYXYXYXYXFXZXLXzXIXIXIXIXIXIXUXmXvXyX=X@XOX{.S.u.~ = = = YX",
|
||||
"YXYXYXYXYXYXIXmXIXPXzXIXIXIXIXIXIXIXIXjX9X%X).I.K.B.N.#.^ = = = ",
|
||||
"YXYXYXYXYXYXSXSXIXLXzXIXIXIXIXIXIXKXxXhX7..X^.G.B.M.j.g.#.~ = = ",
|
||||
"YXYXYXYXYXIXDXUXIXPXzXIXIXIXIXPXZXxXZX4X5.W..XtX:X-X@X#X(.E.= = ",
|
||||
"YXYXYXYXIXGXSXZXPXUXzXPXIXKXSXxXSXKXlXW 5.t.&X$X}.D.A.V.h.!.= = ",
|
||||
"YXYXYXYXIXmXKXZXIXLXnXUXZXZXSXKXKXSX3Xq 4.y.%X}.S.N.j.g.p.2.= = ",
|
||||
"YXYXYXLXmXSXDXFXIXUXcXSXGXKXKXSXKXqXa 8 v r.=XK.N.M.g.p.-.2.= = ",
|
||||
"YXYXYXUXzXSXmXIXPXUXnXPXKXSXSXSXZXl C N 9 Z ^.B.j.k.p.=.%.2.= = ",
|
||||
"YXYXLXcXZXLXUXPXPXUXzXSXSXSXAXSXqXu I 4.E Z _ @.@.@.o.#.!.1.= = ",
|
||||
"YXYXGXSXPXPXPXUXFXSXjXmXZXZXSXZXh C I 3.y.T._ O.i.g.j.#.6.= = = ",
|
||||
"YXLXzXlXZXZXzXjXjXhXqXZXZXZXAX0Xu V L 0.m.(.~._.L.L.L.H.v.[.= = ",
|
||||
"YX6X7X7X4X4X4X8X8X0XhXxXZXAXxXl V V U 9.C.J.iXiX;X+X|.P.H.~.= = ",
|
||||
"YX6 s qXlXjXlXjXqXlXzXxXZXZX0Xy V K U S C.I.>X XS.N.M.g.-.2.= = ",
|
||||
"YX= 1 3XzXxXxXzXqXxXZXxXZXxXk m J U R x ( I.<X{.Z.N.j.a.-.2.= = ",
|
||||
"YXYX+ e hXxXzXlXqXxXxXxXxX8Xr m P Y R A c { ).C.k.i.@.=.$.2.= = ",
|
||||
"YXYX= 2 3XxXzXlX0XlXxXxXjXk 7 b Y T ` r.} / ..+.&.&.o.x.! Q = = ",
|
||||
"YXYX= # e qXzXlX8XlXlXlX8X3 : M F ) _ w.).:.X.%.-.p.*.z.u = = = ",
|
||||
"YXYXYX= > 7.jXjX8XjXlXhXh $ O ; B D ` q.J.*Xb.;.d.f.f.h.l.w = = ",
|
||||
"YXYXYX= @ r 8XhX8XhXjX4X3 O o . - B ( q.U.*XsXpX>X;X@X+X(.].= = ",
|
||||
"YXYXYXYX= > d hX7XqXqXh O O o . 7 H @.(.,XaXoXD.B.M.g.p.Q.= = ",
|
||||
"YXYXYXYX= # 2 2X7XqX2X, O o . X : | u.>XpX{.A.N.j.a.p.Q.= = ",
|
||||
"YXYXYXYXYX$ & z 3X8Xt % o O o o * i | _.uXD.N.M.g.p.=.2.= = ",
|
||||
"YXYXYXYXYXYX# 4 1Xd 4 + + + + # YX= = = ; <.c c c c c c c 2.= = ",
|
||||
"YXYXYXYXYXYX= + r h $ # * = = = YXYX= = = = = = = = = = = = = = ",
|
||||
"YXYXYXYXYXYXYX= f g * = = = = YXYXYXYX= = = = = = = = = = = = = ",
|
||||
"YXYXYXYXYXYXYX= = = = = = = = YXYXYXYXYX= = = = = = = = = = = = "
|
||||
};
|
@ -0,0 +1,242 @@
|
||||
/* XPM */
|
||||
static char *kmailcvt-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 220 2",
|
||||
" c black",
|
||||
". c #010000",
|
||||
"X c #020000",
|
||||
"o c #030000",
|
||||
"O c #000004",
|
||||
"+ c #040000",
|
||||
"@ c #070000",
|
||||
"# c #0A0700",
|
||||
"$ c #0F0000",
|
||||
"% c #110000",
|
||||
"& c #130000",
|
||||
"* c #150000",
|
||||
"= c #180000",
|
||||
"- c #1B0000",
|
||||
"; c #1C0100",
|
||||
": c #1E0000",
|
||||
"> c #1F0300",
|
||||
", c #1F0500",
|
||||
"< c #1C1307",
|
||||
"1 c #210400",
|
||||
"2 c #230600",
|
||||
"3 c #230700",
|
||||
"4 c #240000",
|
||||
"5 c #240600",
|
||||
"6 c #240700",
|
||||
"7 c #250800",
|
||||
"8 c #260900",
|
||||
"9 c #270900",
|
||||
"0 c #2B0C00",
|
||||
"q c #2D0E00",
|
||||
"w c #231507",
|
||||
"e c #22180A",
|
||||
"r c #271C0B",
|
||||
"t c #291C0B",
|
||||
"y c #340900",
|
||||
"u c #2E200D",
|
||||
"i c #30210C",
|
||||
"p c #3C2B0F",
|
||||
"a c #3B2B11",
|
||||
"s c #3F393B",
|
||||
"d c #461500",
|
||||
"f c #442E12",
|
||||
"g c #483318",
|
||||
"h c #4D3A17",
|
||||
"j c #5D2300",
|
||||
"k c #6E2A05",
|
||||
"l c #7A2600",
|
||||
"z c #5D4019",
|
||||
"x c #784603",
|
||||
"c c #7C4C02",
|
||||
"v c #7A541E",
|
||||
"b c #6E5522",
|
||||
"n c #4D5252",
|
||||
"m c #880D00",
|
||||
"M c #8D0E00",
|
||||
"N c #871000",
|
||||
"B c #871100",
|
||||
"V c #981200",
|
||||
"C c #991400",
|
||||
"Z c #9D1800",
|
||||
"A c #9C2800",
|
||||
"S c #A31F00",
|
||||
"D c #A52401",
|
||||
"F c #895F28",
|
||||
"G c #94682A",
|
||||
"H c #9B6C28",
|
||||
"J c #B64A07",
|
||||
"K c #BD5800",
|
||||
"L c #AB6F0C",
|
||||
"P c #B5750E",
|
||||
"I c #A97B30",
|
||||
"U c #B17A29",
|
||||
"Y c #B67F2F",
|
||||
"T c #B47E31",
|
||||
"R c #967F56",
|
||||
"E c #CD7404",
|
||||
"W c #C17D10",
|
||||
"Q c #DD6700",
|
||||
"! c #C46A3F",
|
||||
"~ c #F36A00",
|
||||
"^ c #F87500",
|
||||
"/ c #FC7800",
|
||||
"( c #FF7900",
|
||||
") c #FF7A00",
|
||||
"_ c #9F845A",
|
||||
"` c #9F9170",
|
||||
"' c #A68452",
|
||||
"] c #A58655",
|
||||
"[ c #A98656",
|
||||
"{ c #C98212",
|
||||
"} c #D09332",
|
||||
"| c #DDA02D",
|
||||
" . c #D6A835",
|
||||
".. c #E39419",
|
||||
"X. c #E4921D",
|
||||
"o. c #E49519",
|
||||
"O. c #E8961A",
|
||||
"+. c #EB9A1A",
|
||||
"@. c #F29F1B",
|
||||
"#. c #E59720",
|
||||
"$. c #EF9F26",
|
||||
"%. c #FF8621",
|
||||
"&. c #FCA41E",
|
||||
"*. c #FFB01C",
|
||||
"=. c #EAA43A",
|
||||
"-. c #EBB336",
|
||||
";. c #F1A024",
|
||||
":. c #F4A127",
|
||||
">. c #F5A126",
|
||||
",. c #F4A227",
|
||||
"<. c #F5A226",
|
||||
"1. c #F6A327",
|
||||
"2. c #FFAD27",
|
||||
"3. c #FFA828",
|
||||
"4. c #FFAB2D",
|
||||
"5. c #FEAE33",
|
||||
"6. c #FFAD3A",
|
||||
"7. c #FFB523",
|
||||
"8. c #F7BA30",
|
||||
"9. c #FFB031",
|
||||
"0. c #FFB535",
|
||||
"q. c #FFB737",
|
||||
"w. c #FFB93F",
|
||||
"e. c #FFBD3D",
|
||||
"r. c #C69644",
|
||||
"t. c #C09F4B",
|
||||
"y. c #C49B48",
|
||||
"u. c #CA9B47",
|
||||
"i. c #D6AD58",
|
||||
"p. c #FAB543",
|
||||
"a. c #FDB140",
|
||||
"s. c #FFB341",
|
||||
"d. c #FFB643",
|
||||
"f. c #FFB544",
|
||||
"g. c #FFB744",
|
||||
"h. c #FFB745",
|
||||
"j. c #FFB845",
|
||||
"k. c #FFBB45",
|
||||
"l. c #FFBB46",
|
||||
"z. c #FFBE41",
|
||||
"x. c #FFBC45",
|
||||
"c. c #FFB948",
|
||||
"v. c #FFC334",
|
||||
"b. c #FFC03B",
|
||||
"n. c #FFC13F",
|
||||
"m. c #FFCC3F",
|
||||
"M. c #FFC245",
|
||||
"N. c #FFC540",
|
||||
"B. c #FFC642",
|
||||
"V. c #FFC64D",
|
||||
"C. c #FFC94B",
|
||||
"Z. c #FFCF48",
|
||||
"A. c #FFCC4E",
|
||||
"S. c #FFCE4E",
|
||||
"D. c #FFCB52",
|
||||
"F. c #FFCC52",
|
||||
"G. c #FFD352",
|
||||
"H. c #FFD556",
|
||||
"J. c #FFDA55",
|
||||
"K. c #FFDE55",
|
||||
"L. c #FFD37C",
|
||||
"P. c #FFEE5B",
|
||||
"I. c #938A80",
|
||||
"U. c #9B9B9B",
|
||||
"Y. c #999B9F",
|
||||
"T. c #849FBD",
|
||||
"R. c #A5A5A5",
|
||||
"E. c gray66",
|
||||
"W. c #BFB9A9",
|
||||
"Q. c #B2B4B5",
|
||||
"!. c gray71",
|
||||
"~. c #B5BBBC",
|
||||
"^. c #B9B9B9",
|
||||
"/. c #BABBBB",
|
||||
"(. c #9EB0D2",
|
||||
"). c #ADB4C0",
|
||||
"_. c #A8BEE0",
|
||||
"`. c #BCC1AB",
|
||||
"'. c #B7C4D6",
|
||||
"]. c #C3B697",
|
||||
"[. c #D3BF9A",
|
||||
"{. c #FFE7B1",
|
||||
"}. c #C2C3C4",
|
||||
"|. c gray77",
|
||||
" X c #C3CACD",
|
||||
".X c #C8C8C8",
|
||||
"XX c #CBCBCB",
|
||||
"oX c #C0CDDF",
|
||||
"OX c #D4C8CE",
|
||||
"+X c gray82",
|
||||
"@X c #D5D6D6",
|
||||
"#X c #D3D6DD",
|
||||
"$X c #D4D7D9",
|
||||
"%X c #C4D0E1",
|
||||
"&X c #CCD3E1",
|
||||
"*X c #CADAE6",
|
||||
"=X c #DEE5EF",
|
||||
"-X c #DAE3F2",
|
||||
";X c #FFEBC7",
|
||||
":X c #FAEACC",
|
||||
">X c #FFF6C5",
|
||||
",X c #FFF1CB",
|
||||
"<X c #FFF0D2",
|
||||
"1X c #E3E3E4",
|
||||
"2X c #E5E6E8",
|
||||
"3X c #EBECED",
|
||||
"4X c #EDEEEE",
|
||||
"5X c #E2E8F6",
|
||||
"6X c #E2F6FE",
|
||||
"7X c #F3F6FA",
|
||||
"8X c #F3FAFF",
|
||||
"9X c #F6F8FD",
|
||||
"0X c #F8F8F9",
|
||||
"qX c #F8F9FA",
|
||||
"wX c #F9FFFF",
|
||||
"eX c #FFF8FD",
|
||||
"rX c #FDFFFF",
|
||||
"tX c #FEFFFF",
|
||||
"yX c gray100",
|
||||
"uX c None",
|
||||
/* pixels */
|
||||
"uXuXk A M m N N V V Z D D l uX",
|
||||
"uXJ m.e.L.{.,X<X:X;X[.} 7.*.K ",
|
||||
"uX%.>XyXyXyXyXyXyX*XT._ 5.p.@.4 ",
|
||||
"s eXyXyXyXyXyXqX}.Y.'.[ 4.a.$.8 ",
|
||||
"~. XQ./.|.XX.XU.R.2X%X' 9.a.;.3 ",
|
||||
"n wX4X1X+X!.R./.@X$X'.] q.f.,.6 ",
|
||||
"uXOXyXyXyX0XyXyXyX&X(._ q.h.>.3 ",
|
||||
"uX! 6X7X4X9XyX8X#XW.` r.z.f.>.6 ",
|
||||
"uX~ `.-X-X5X].t. .-.b.M.k.f.>.3 ",
|
||||
"uX) i._.~.y.8.B.K.H.F.V.k.k.1.6 ",
|
||||
"uX) e.I.u.| # b H.G.h.f Y 3.8 ",
|
||||
"uX^ N.6.Z.a i F.I u H w r #.q ",
|
||||
"@ ) z.f.C.t z P.S.< v e U 2.0 ",
|
||||
"uXQ v.c.A.T O g G F =.a h X.: ",
|
||||
"uXy E o.o.&.P c { o.L +.W x j ",
|
||||
"uXuX % $ % 3 8 : * , * : - uXuX"
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kmailcvt[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #010000",
|
||||
". c #090000",
|
||||
"X c #0C0A02",
|
||||
"o c #160100",
|
||||
"O c #110C04",
|
||||
"+ c #1C0000",
|
||||
"@ c #161006",
|
||||
"# c #191106",
|
||||
"$ c #1D1508",
|
||||
"% c #1A1900",
|
||||
"& c #260F00",
|
||||
"* c #2A0706",
|
||||
"= c #241000",
|
||||
"- c #241909",
|
||||
"; c #281D0A",
|
||||
": c #320000",
|
||||
"> c #3E0B00",
|
||||
", c #330A07",
|
||||
"< c #311B00",
|
||||
"1 c #2E220C",
|
||||
"2 c #3B290E",
|
||||
"3 c #392B11",
|
||||
"4 c gray15",
|
||||
"5 c #490300",
|
||||
"6 c #590300",
|
||||
"7 c #511F00",
|
||||
"8 c #422D10",
|
||||
"9 c #45300F",
|
||||
"0 c #463010",
|
||||
"q c #493917",
|
||||
"w c #4A3313",
|
||||
"e c #583C0E",
|
||||
"r c #50360B",
|
||||
"t c #5A3E15",
|
||||
"y c #600F00",
|
||||
"u c #651100",
|
||||
"i c #6E1200",
|
||||
"p c #750C00",
|
||||
"a c #7A0E00",
|
||||
"s c #721200",
|
||||
"d c #761E00",
|
||||
"f c #663B00",
|
||||
"g c #7C2100",
|
||||
"h c #7B2A00",
|
||||
"j c #773200",
|
||||
"k c #7F3F00",
|
||||
"l c #5D4018",
|
||||
"z c #634519",
|
||||
"x c #6D4A19",
|
||||
"c c #674512",
|
||||
"v c #734E19",
|
||||
"b c #7A531A",
|
||||
"n c #6E5221",
|
||||
"m c #7A5923",
|
||||
"M c #585858",
|
||||
"N c #726A5F",
|
||||
"B c #797979",
|
||||
"V c #862800",
|
||||
"C c #843A00",
|
||||
"Z c #922800",
|
||||
"A c #A83400",
|
||||
"S c #AA3C00",
|
||||
"D c #BC2D00",
|
||||
"F c #BA3301",
|
||||
"G c #B8352D",
|
||||
"H c #844200",
|
||||
"J c #884400",
|
||||
"K c #8C5807",
|
||||
"L c #805717",
|
||||
"P c #875B17",
|
||||
"I c #8A5D16",
|
||||
"U c #9C4300",
|
||||
"Y c #915403",
|
||||
"T c #8A5F21",
|
||||
"R c #835B21",
|
||||
"E c #9A6205",
|
||||
"W c #9C6A1E",
|
||||
"Q c #856225",
|
||||
"! c #926523",
|
||||
"~ c #9C6B27",
|
||||
"^ c #9B732E",
|
||||
"/ c #AB4400",
|
||||
"( c #AC7106",
|
||||
") c #B36701",
|
||||
"_ c #B27506",
|
||||
"` c #BB7A07",
|
||||
"' c #BC7C08",
|
||||
"] c #BB7706",
|
||||
"[ c #B67C10",
|
||||
"{ c #A66908",
|
||||
"} c #AF792A",
|
||||
"| c #A8742B",
|
||||
" . c #A37E33",
|
||||
".. c #AC7E32",
|
||||
"X. c #B37B2B",
|
||||
"o. c #BA7F29",
|
||||
"O. c #B77C25",
|
||||
"+. c #887F73",
|
||||
"@. c #C70A00",
|
||||
"#. c #CA0900",
|
||||
"$. c #CB3600",
|
||||
"%. c #D23600",
|
||||
"&. c #DC3600",
|
||||
"*. c #D3310D",
|
||||
"=. c #E13700",
|
||||
"-. c #E13800",
|
||||
";. c #D5550D",
|
||||
":. c #C07E08",
|
||||
">. c #C57702",
|
||||
",. c #D37C00",
|
||||
"<. c #E44507",
|
||||
"1. c #EE5325",
|
||||
"2. c #E76701",
|
||||
"3. c #F46530",
|
||||
"4. c #D65442",
|
||||
"5. c #A8893F",
|
||||
"6. c #AB8238",
|
||||
"7. c #B68132",
|
||||
"8. c #BF8738",
|
||||
"9. c #BA8635",
|
||||
"0. c #BC943B",
|
||||
"q. c #9D8854",
|
||||
"w. c #9B8A63",
|
||||
"e. c #90867A",
|
||||
"r. c #90887A",
|
||||
"t. c #988C77",
|
||||
"y. c #968A76",
|
||||
"u. c #A1844A",
|
||||
"i. c #A28750",
|
||||
"p. c #AA8B54",
|
||||
"a. c #B78D41",
|
||||
"s. c #B29244",
|
||||
"d. c #A69168",
|
||||
"f. c #AC9776",
|
||||
"g. c #B59565",
|
||||
"h. c #C7860A",
|
||||
"j. c #C98303",
|
||||
"k. c #C38414",
|
||||
"l. c #CA8916",
|
||||
"z. c #CE8B18",
|
||||
"x. c #DF8D02",
|
||||
"c. c #D28E19",
|
||||
"v. c #DE930C",
|
||||
"b. c #D49019",
|
||||
"n. c #D89119",
|
||||
"m. c #C38525",
|
||||
"M. c #C48629",
|
||||
"N. c #CD8B29",
|
||||
"B. c #C18631",
|
||||
"V. c #C38C3A",
|
||||
"C. c #CB8B30",
|
||||
"Z. c #C58D37",
|
||||
"A. c #C4913E",
|
||||
"S. c #C39B3F",
|
||||
"D. c #D18E2B",
|
||||
"F. c #D89220",
|
||||
"G. c #DA942B",
|
||||
"H. c #D2902D",
|
||||
"J. c #DE9934",
|
||||
"K. c #D59A3D",
|
||||
"L. c #D2A03F",
|
||||
"P. c #EA9605",
|
||||
"I. c #EE9905",
|
||||
"U. c #E79405",
|
||||
"Y. c #E29717",
|
||||
"T. c #E1971E",
|
||||
"R. c #E89B1C",
|
||||
"E. c #F19B05",
|
||||
"W. c #F09011",
|
||||
"Q. c #F99D1D",
|
||||
"!. c #F49B1A",
|
||||
"~. c #E49B2D",
|
||||
"^. c #EB9C2B",
|
||||
"/. c #E59D34",
|
||||
"(. c #E99F30",
|
||||
"). c #E29F3A",
|
||||
"_. c #F49D21",
|
||||
"`. c #F5A21E",
|
||||
"'. c #FCA11B",
|
||||
"]. c #EEA021",
|
||||
"[. c #E3A23B",
|
||||
"{. c #EBA135",
|
||||
"}. c #EDA339",
|
||||
"|. c #F5A427",
|
||||
" X c #F1A63A",
|
||||
".X c #F4A93C",
|
||||
"XX c #F8AC3E",
|
||||
"oX c #FEB03F",
|
||||
"OX c #F8BA3F",
|
||||
"+X c #CB9E42",
|
||||
"@X c #C8A245",
|
||||
"#X c #D9A445",
|
||||
"$X c #DDB576",
|
||||
"%X c #FF9647",
|
||||
"&X c #E7A845",
|
||||
"*X c #E1AF59",
|
||||
"=X c #E7B046",
|
||||
"-X c #E3B44A",
|
||||
";X c #EBB648",
|
||||
":X c #F3AB41",
|
||||
">X c #FBAD40",
|
||||
",X c #F7B648",
|
||||
"<X c #FDB344",
|
||||
"1X c #FEB846",
|
||||
"2X c #FEBB4A",
|
||||
"3X c #F1B94A",
|
||||
"4X c #FEC14D",
|
||||
"5X c #F5C04E",
|
||||
"6X c #F3C250",
|
||||
"7X c #FDC551",
|
||||
"8X c #FECB54",
|
||||
"9X c #FED37F",
|
||||
"0X c gray53",
|
||||
"qX c #8C8C8C",
|
||||
"wX c #8F8F90",
|
||||
"eX c #96928D",
|
||||
"rX c #9C9C9C",
|
||||
"tX c gray59",
|
||||
"yX c #A89F8B",
|
||||
"uX c #A49A81",
|
||||
"iX c #A09B97",
|
||||
"pX c #A68788",
|
||||
"aX c #B8AA91",
|
||||
"sX c #A4A4A3",
|
||||
"dX c #ABABAB",
|
||||
"fX c #ABA8A2",
|
||||
"gX c #AEB0B2",
|
||||
"hX c #B9B5AD",
|
||||
"jX c #BAB5A7",
|
||||
"kX c #B4B4B4",
|
||||
"lX c #BBBCBC",
|
||||
"zX c #BAB8B2",
|
||||
"xX c #D9BF8E",
|
||||
"cX c #C4BFB3",
|
||||
"vX c #CBC1AF",
|
||||
"bX c #DBCCAE",
|
||||
"nX c #D2CABB",
|
||||
"mX c #E5C08D",
|
||||
"MX c #E8D5B8",
|
||||
"NX c #C4C4C4",
|
||||
"BX c #CBCBCB",
|
||||
"VX c #DAD3C6",
|
||||
"CX c #D4D4D4",
|
||||
"ZX c #D8D7D6",
|
||||
"AX c #DBDBDB",
|
||||
"SX c #E2DACD",
|
||||
"DX c #E3DDD2",
|
||||
"FX c #EFDADA",
|
||||
"GX c #E6E1D5",
|
||||
"HX c #EEE4D5",
|
||||
"JX c #E3E3E2",
|
||||
"KX c #E6E7E8",
|
||||
"LX c #EBEBEB",
|
||||
"PX c #F4F4F4",
|
||||
"IX c #FCFDFD",
|
||||
"UX c #F6F8FA",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYX. . . . . . . . . . . . . . . . . . . X YXYXYXYXYX",
|
||||
"YXYXYXYX7 Z %.@.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.@.#.F p = YXYXYX",
|
||||
"YXYXf F 3.%X|.'.'.'.|.|.{. X X X}. X{.^.^._._._.Q.Q.W.2.F s YX",
|
||||
"YXYXF 1.9XOX`.|.[.*XxXbXSXDXDXDXDXDXVXnXcXaXp.~.R.R.n.U.,.S o ",
|
||||
"YX% ;.XX].;XmXDXIXIXIXIXIXIXUXUXLXLXJXJXBXwXN ..}.{././.n.>.s . ",
|
||||
"YX< <.!.$XHXUXIXIXIXIXIXIXIXUXPXLXKXLXCX0XrX+.X. X}.{./.J.h.V + ",
|
||||
"YX, 4.MXUXUXUXIXIXIXIXIXIXIXUXPXLXPXlXqXgXNXe.8..X X}.{./.l.C + ",
|
||||
"4 rXFXLXLXLXPXUXUXIXIXIXUXPXLXKXLXcXwXgXBXBXe.V.:X.X}.{./.z.J + ",
|
||||
"sXAXCXCXAXJXKXKXLXLXLXLXKXJXGXJXsXtXNXZXCXBXe.V.>XXX X}./.z.J + ",
|
||||
"rXrXrXrXfXkXNXCXAXGXAXAXCXCXBXrXrXBXAXZXCXBXe.V.>X>X.X}.{.c.J + ",
|
||||
"B lXCXNXlXkXdXdXdXdXdXdXdXdXqX0XNXJXAXZXBXNXe.V.<X>X.X X{.c.J + ",
|
||||
"M sXKXLXLXPXPXLXAXCXBXkXsXdXlXCXNXNXCXCXBXNXe.+X<X>XXX X}.c.J + ",
|
||||
" M NXKXPXPXUXIXIXIXIXJXUXPXIXIXUXZXlXNXNXcX0XV.1X>XXX.X}.b.J + ",
|
||||
"YX* pXAXKXPXPXUXIXIXLXJXIXIXIXIXIXPXZXkXgXlXe.A.1X>XXX.X}.b.J + ",
|
||||
"YX: G hXJXLXPXPXPXPXKXPXIXIXIXIXIXUXPXKXkXsXe.+X<X>XXX.X&Xb.J + ",
|
||||
"YX: *.f.CXJXKXKXPXKXCXUXIXIXIXIXLXZXhXyXw.i.a.&X1X<XXX.X Xc.J + ",
|
||||
"YX: =.c.dXZXAXJXAXCXPXUXUXJXcXuXq.s.a.#X;X3X,X2X1X>XXX X Xc.J + ",
|
||||
"YX: =.E.f.lXAXAXCXCXPXKXjXd.s.@X-X6X7X8X7X4X4X2X1X<XXX X{.c.J + ",
|
||||
"YX: =.E.#XrXNXBXBXKXzXw.0.-X8X8X8X8X8X7X7X4X2X1X<X<X.X X{.c.J + ",
|
||||
"YX: =.E.:Xg.gXNXNXfXu.+X6X8X8X8X8X8X7X7X4X2X2X1X<XXX.X X{.c.J + ",
|
||||
"YX: &.E.XX:XeXdXt.6.=X5X .q 1 3 Q -X7X4X4X2X1X1XB.R C.}.).z.J + ",
|
||||
"YX: &.I.XX>Xg.y.6.=X5X6.X ; $ @ 6.4X4X2X2X1X1Xm I /./.z.H + ",
|
||||
"YX: &.I.XX<X.XK.:X2XK.1 X n K.#X^ m 3 m 1X7.2 l $ # 2 C.l.H + ",
|
||||
"YX: &.P..X>X>XXX1X1X9.@ - ..3X2X,XZ. 1 [.z X z - ; 9 o.k.k + ",
|
||||
"YX: &.P. X.XXX<X<X<Xo.O 1 Z.1X1X1X,X3 X ! - - } x v M.D.k.C + ",
|
||||
"YX: %.U.}. X.XXX>X<X8.# - 7.1X>X<X:X! 2 X 8 C.x b D.G.k.k + ",
|
||||
"YX= $.x.{.}.}. X.X.X[.w 2 } | t X.B.- W G.v t O.H.[ h o ",
|
||||
"YXX A ,.n.{.}. X X X.XX.# X X @ ~ J.0 O } ~.! X X ; O.{ u ",
|
||||
"YXYXs / j.n.~.~.~.^.{.~.M.b e c ~ M.~.m.b P m.G.N.I r e K C . ",
|
||||
"YXYX: 6 U ) ` ' ' ' ' h.:.] ( ( _ ` ` ] ( ( _ _ _ ( E Y j > ",
|
||||
"YXYXYX + 6 a g g g g g g g g g g g g g g d d d d d i 5 YX",
|
||||
"YXYXYXYX . . . . . . . . . . . . . . . . . YXYX"
|
||||
};
|
@ -0,0 +1,115 @@
|
||||
/* XPM */
|
||||
static char *knode-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 93 2",
|
||||
" c #434343",
|
||||
". c #5A5A5A",
|
||||
"X c #5F5F5F",
|
||||
"o c gray38",
|
||||
"O c gray39",
|
||||
"+ c #686868",
|
||||
"@ c #6A6A6A",
|
||||
"# c gray44",
|
||||
"$ c gray46",
|
||||
"% c #767676",
|
||||
"& c gray47",
|
||||
"* c #7B7B7B",
|
||||
"= c #7C7C7C",
|
||||
"- c gray49",
|
||||
"; c #808080",
|
||||
": c #818181",
|
||||
"> c gray51",
|
||||
", c #838383",
|
||||
"< c #848484",
|
||||
"1 c gray52",
|
||||
"2 c #888888",
|
||||
"3 c #898989",
|
||||
"4 c #8D8D8D",
|
||||
"5 c #8E8E8E",
|
||||
"6 c #909090",
|
||||
"7 c gray57",
|
||||
"8 c #929292",
|
||||
"9 c #959595",
|
||||
"0 c gray59",
|
||||
"q c #979797",
|
||||
"w c #989898",
|
||||
"e c #9A9A9A",
|
||||
"r c gray61",
|
||||
"t c gray63",
|
||||
"y c #A2A2A2",
|
||||
"u c gray64",
|
||||
"i c #A4A4A4",
|
||||
"p c gray68",
|
||||
"a c #AEAEAE",
|
||||
"s c #AFAFAF",
|
||||
"d c gray69",
|
||||
"f c #B1B1B1",
|
||||
"g c #B4B4B4",
|
||||
"h c #B6B6B6",
|
||||
"j c #B7B7B7",
|
||||
"k c gray72",
|
||||
"l c gray73",
|
||||
"z c #BBBBBB",
|
||||
"x c #BCBCBC",
|
||||
"c c gray74",
|
||||
"v c gray",
|
||||
"b c #C0C0C0",
|
||||
"n c #C1C1C1",
|
||||
"m c gray76",
|
||||
"M c gray77",
|
||||
"N c #C5C5C5",
|
||||
"B c gray78",
|
||||
"V c #C8C8C8",
|
||||
"C c gray79",
|
||||
"Z c #CACACA",
|
||||
"A c #CECECE",
|
||||
"S c gray81",
|
||||
"D c LightGray",
|
||||
"F c gray83",
|
||||
"G c #D5D5D5",
|
||||
"H c gray84",
|
||||
"J c #D7D7D7",
|
||||
"K c #D8D8D8",
|
||||
"L c gray86",
|
||||
"P c gainsboro",
|
||||
"I c #DDDDDD",
|
||||
"U c gray87",
|
||||
"Y c gray88",
|
||||
"T c #E1E1E1",
|
||||
"R c #E2E2E2",
|
||||
"E c gray89",
|
||||
"W c #E4E4E4",
|
||||
"Q c #E6E6E6",
|
||||
"! c #E7E7E7",
|
||||
"~ c gray91",
|
||||
"^ c #EAEAEA",
|
||||
"/ c gray92",
|
||||
"( c gray93",
|
||||
") c #EFEFEF",
|
||||
"_ c gray94",
|
||||
"` c #F3F3F3",
|
||||
"' c gray96",
|
||||
"] c gray97",
|
||||
"[ c gray98",
|
||||
"{ c #FBFBFB",
|
||||
"} c #FDFDFD",
|
||||
"| c gray100",
|
||||
" . c None",
|
||||
/* pixels */
|
||||
" . . . . . . . . . . . . . . . .",
|
||||
"X t t t t t t t q - - - - - $ ",
|
||||
"q / / { | | | | | | | | | ` ` $ ",
|
||||
"6 S k S S S m t a N S S S r k 1 ",
|
||||
"q ( D | @ : e $ : @ $ 4 4 | ` 1 ",
|
||||
"t L x S t t k k a t a a a m f * ",
|
||||
"e / L L | { | | | ` E | / E / 3 ",
|
||||
"3 L E N | ( R k t e e ( m x h q ",
|
||||
"4 m L x / / / R k k q R V L L i ",
|
||||
"i | | / ( / R E D r q S L x x r ",
|
||||
"e V V x R D L L D x x S V m f 3 ",
|
||||
"6 N S N R D L E L R L D V N h 4 ",
|
||||
"6 x f f D f N R L x D R k S h 1 ",
|
||||
"3 x x i D h h V L N x D f x m 1 ",
|
||||
". + O * - - * : : * * : @ : 1 O ",
|
||||
" . . . . . . . . . . . . . . . ."
|
||||
};
|
@ -0,0 +1,156 @@
|
||||
/* XPM */
|
||||
static char *knode[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 118 2",
|
||||
" c black",
|
||||
". c #464646",
|
||||
"X c gray31",
|
||||
"o c gray32",
|
||||
"O c #565656",
|
||||
"+ c gray34",
|
||||
"@ c gray35",
|
||||
"# c #5A5A5A",
|
||||
"$ c #606060",
|
||||
"% c gray38",
|
||||
"& c #626262",
|
||||
"* c #656565",
|
||||
"= c gray40",
|
||||
"- c #6A6A6A",
|
||||
"; c #6C6C6C",
|
||||
": c #6D6D6D",
|
||||
"> c gray43",
|
||||
", c #6F6F6F",
|
||||
"< c gray44",
|
||||
"1 c #717171",
|
||||
"2 c #727272",
|
||||
"3 c #747474",
|
||||
"4 c gray46",
|
||||
"5 c #767676",
|
||||
"6 c gray48",
|
||||
"7 c #7E7E7E",
|
||||
"8 c #818181",
|
||||
"9 c #848484",
|
||||
"0 c gray53",
|
||||
"q c gray55",
|
||||
"w c #8D8D8D",
|
||||
"e c #939393",
|
||||
"r c gray58",
|
||||
"t c #959595",
|
||||
"y c gray59",
|
||||
"u c #979797",
|
||||
"i c #989898",
|
||||
"p c gray60",
|
||||
"a c #9B9B9B",
|
||||
"s c gray61",
|
||||
"d c #9D9D9D",
|
||||
"f c gray62",
|
||||
"g c #9F9F9F",
|
||||
"h c #A0A0A0",
|
||||
"j c #A4A4A4",
|
||||
"k c gray65",
|
||||
"l c #A7A7A7",
|
||||
"z c gray66",
|
||||
"x c #ACACAC",
|
||||
"c c gray68",
|
||||
"v c #AEAEAE",
|
||||
"b c gray69",
|
||||
"n c #B2B2B2",
|
||||
"m c gray71",
|
||||
"M c #B6B6B6",
|
||||
"N c #B7B7B7",
|
||||
"B c #B9B9B9",
|
||||
"V c gray73",
|
||||
"C c #BCBCBC",
|
||||
"Z c gray74",
|
||||
"A c gray",
|
||||
"S c gray75",
|
||||
"D c #C1C1C1",
|
||||
"F c gray76",
|
||||
"G c #C3C3C3",
|
||||
"H c gray77",
|
||||
"J c #C5C5C5",
|
||||
"K c #C6C6C6",
|
||||
"L c gray78",
|
||||
"P c gray79",
|
||||
"I c #CACACA",
|
||||
"U c #CBCBCB",
|
||||
"Y c gray80",
|
||||
"T c #CDCDCD",
|
||||
"R c #CECECE",
|
||||
"E c gray81",
|
||||
"W c gray82",
|
||||
"Q c #D2D2D2",
|
||||
"! c LightGray",
|
||||
"~ c gray83",
|
||||
"^ c #D5D5D5",
|
||||
"/ c gray84",
|
||||
"( c #D8D8D8",
|
||||
") c gray85",
|
||||
"_ c #DADADA",
|
||||
"` c gray86",
|
||||
"' c gainsboro",
|
||||
"] c #DDDDDD",
|
||||
"[ c gray87",
|
||||
"{ c gray88",
|
||||
"} c #E1E1E1",
|
||||
"| c #E2E2E2",
|
||||
" . c gray89",
|
||||
".. c #E4E4E4",
|
||||
"X. c gray90",
|
||||
"o. c #E6E6E6",
|
||||
"O. c gray91",
|
||||
"+. c #E9E9E9",
|
||||
"@. c #EAEAEA",
|
||||
"#. c gray92",
|
||||
"$. c #ECECEC",
|
||||
"%. c gray93",
|
||||
"&. c #EFEFEF",
|
||||
"*. c gray94",
|
||||
"=. c #F1F1F1",
|
||||
"-. c gray95",
|
||||
";. c #F3F3F3",
|
||||
":. c #F4F4F4",
|
||||
">. c gray96",
|
||||
",. c gray97",
|
||||
"<. c #F8F8F8",
|
||||
"1. c #F9F9F9",
|
||||
"2. c gray98",
|
||||
"3. c #FBFBFB",
|
||||
"4. c gray99",
|
||||
"5. c #FDFDFD",
|
||||
"6. c gray100",
|
||||
"7. c None",
|
||||
/* pixels */
|
||||
"7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.",
|
||||
"7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.",
|
||||
"7.. . . . . . . . . . . . . . . . . . . . . . . . . . . . 7.7.7.",
|
||||
". & 7 7 7 7 7 7 7 7 7 7 7 7 7 0 x D D D D D D Z Z D Z p & . 7.7.",
|
||||
"+ Q ] $.6.6.6.6. .] ] ] ] ] ] ] ` ` ] ` ` ` ] ] ] ] .6.6 . 7.7.",
|
||||
"+ .o.o.o.o.o.o.$.o.o.$.o.$.o.o.$.o.$.o.$.o.o.$.o.$.o.o.D . 7.7.",
|
||||
"o $.6.$.-.6.6.6.6.6.6.6.6.-. .-.-.-.6.6.6.6.6.6.$.L ] ` T . 7.7.",
|
||||
"- o.:.N Z L T T Q .o.$.$.^ ^ ^ .` Q T T T T T T T V v D . 7.7.",
|
||||
"2 .6.$.$.$.$.^ Z L .T x x D T T T g N .o.$.$.$.^ V ` 6.. 7.7.",
|
||||
"2 .6.L ^ :.6.T p 8 v v V & w 8 8 8 w w e w w p -.6.6.6.6.. 7.7.",
|
||||
"2 .6.^ ] 1.6.-.v p w Q V V v V v p e Q 5 8 v w $.$.$.$.6.. 7.7.",
|
||||
"- ] o.e e e e e e e e e e e e e e l v v v v v v v v v v -.. 7.7.",
|
||||
"2 T 6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.. 7.7.",
|
||||
"- .1.$.-.] -.T 6.6.6.1.6.1.1.6.6.6.6.o.-.6.6.` 1.$.-.` o.. 7.7.",
|
||||
"- .` L ] o.] T 6.6.] .] .] D N N g u u 6.6.T .` ` ] o.- 7.7.",
|
||||
"2 .6.-.:.:.-.T 6.6. . .o.Q v j g u u u p 1.6.] o.` ] ] :.5 7.7.",
|
||||
"- ` L T T ^ ] T 6.6. . .o.D Z v g g x u p o.6.o. .T Q T .5 7.7.",
|
||||
"- .L T ` ` ] T 6.6.] ] $. .$. .v Z .e p o.6.` 6.6.1.6.6.5 7.7.",
|
||||
"- o.:.$.$.-.$.L 6.6.] .$.] o.] ` v D u u L 6.L -.` ] .] 5 7.7.",
|
||||
"& -.6.6.6.6.6.L 6.6.] ] ] ] ] ] ^ p u u u T 6.L .L ] ] ` 5 7.7.",
|
||||
"# :.` T ` ` ` ^ 6.6.1.1.1.1.1.1. .^ L T T -.6.L Q D ^ ` ] 5 7.7.",
|
||||
"# -.] .^ T .Q Z T L L L L ^ L L T Z D Z T D L ` ` T ` ] 2 7.7.",
|
||||
"& o.Q T ^ ^ ] L D N v L .D .Z N Q v Z v N x D $.^ ^ .T 5 . 7.",
|
||||
"2 $.^ Q ^ ] ` L . . . .:.:.6.-.$.6.:.-. . .o.L .T ^ ] Q 7 . 7.",
|
||||
"2 o.^ Q L Q ] D o.^ L ^ ^ ` $.6.] ` ^ ] ^ ^ 1.D Q L ^ ^ ^ g . 7.",
|
||||
"2 .Q ^ L ^ ` D .^ L ^ ` ` .1.` ^ ^ ^ ^ ^ 1.D ` Q T ] ` g . 7.",
|
||||
"- ` L L ` ` T Q ] T Q L L T .-.T T T Q L ] -.T ` Q L L ` p . 7.",
|
||||
"o ^ T Q ` ] D L Q L L L L L Q ] L D D L L L ] v T L ^ ] ` e . 7.",
|
||||
". 0 p g g Z l Z D Z Z Z Z Z L T Z Z Z D Z D T j L D D L D q . 7.",
|
||||
". . . . . . . . . * * * * * * * * * * * * * * # * * * * + . . 7.",
|
||||
"7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.",
|
||||
"7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7."
|
||||
};
|
@ -0,0 +1,181 @@
|
||||
/* XPM */
|
||||
static char *knotes-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 159 2",
|
||||
" c black",
|
||||
". c #090806",
|
||||
"X c #090906",
|
||||
"o c #0D0E0A",
|
||||
"O c #10100B",
|
||||
"+ c #161610",
|
||||
"@ c #1C1B13",
|
||||
"# c #1E1D14",
|
||||
"$ c #1E1E15",
|
||||
"% c #212116",
|
||||
"& c #25251B",
|
||||
"* c #2A2A1C",
|
||||
"= c #2E2E20",
|
||||
"- c #313121",
|
||||
"; c #333322",
|
||||
": c #343523",
|
||||
"> c #3C3D27",
|
||||
", c #533D13",
|
||||
"< c #44452C",
|
||||
"1 c #48482F",
|
||||
"2 c #49492E",
|
||||
"3 c #555339",
|
||||
"4 c #595731",
|
||||
"5 c #5E5932",
|
||||
"6 c #5D5D3D",
|
||||
"7 c #61572B",
|
||||
"8 c #625837",
|
||||
"9 c #665B33",
|
||||
"0 c #765E24",
|
||||
"q c #726129",
|
||||
"w c #7D6121",
|
||||
"e c #7F6023",
|
||||
"r c #79683F",
|
||||
"t c #716743",
|
||||
"y c #716F45",
|
||||
"u c #835E17",
|
||||
"i c #81611E",
|
||||
"p c #86621C",
|
||||
"a c #8A641C",
|
||||
"s c #8E651D",
|
||||
"d c #95670B",
|
||||
"f c #93680F",
|
||||
"g c #96690A",
|
||||
"h c #996C0D",
|
||||
"j c #996C0E",
|
||||
"k c #916614",
|
||||
"l c #916715",
|
||||
"z c #946B1A",
|
||||
"x c #966B1E",
|
||||
"c c #966C1A",
|
||||
"v c #966C1F",
|
||||
"b c #9A6D11",
|
||||
"n c #9A6E11",
|
||||
"m c #9D7009",
|
||||
"M c #9C7019",
|
||||
"N c #9F741C",
|
||||
"B c #9B7221",
|
||||
"V c #A57605",
|
||||
"C c #A0720A",
|
||||
"Z c #AC811A",
|
||||
"A c #B18105",
|
||||
"S c #B98F1E",
|
||||
"D c #939263",
|
||||
"F c #9A9968",
|
||||
"G c #A28555",
|
||||
"H c #A28556",
|
||||
"J c #A28855",
|
||||
"K c #B39662",
|
||||
"L c #C19824",
|
||||
"P c #D3A925",
|
||||
"I c #DCBD38",
|
||||
"U c #C19C52",
|
||||
"Y c #D7BC57",
|
||||
"T c #D7BF7D",
|
||||
"R c #DDC77C",
|
||||
"E c #E2C554",
|
||||
"W c #EAD67D",
|
||||
"Q c #ECD87C",
|
||||
"! c #F8DF78",
|
||||
"~ c #FFDF79",
|
||||
"^ c #F2E27D",
|
||||
"/ c #FFE07A",
|
||||
"( c #FFE17B",
|
||||
") c #FFE27C",
|
||||
"_ c #FFE47E",
|
||||
"` c #FFE57F",
|
||||
"' c #A4A688",
|
||||
"] c #B9BA8C",
|
||||
"[ c #BABA8E",
|
||||
"{ c #C2C18E",
|
||||
"} c #C5C48F",
|
||||
"| c #C5C68F",
|
||||
" . c #C7C78F",
|
||||
".. c #CBC88F",
|
||||
"X. c #CCCB90",
|
||||
"o. c #CDCF90",
|
||||
"O. c #D0D18E",
|
||||
"+. c #D7D392",
|
||||
"@. c #D6D792",
|
||||
"#. c #D7D49B",
|
||||
"$. c #DADA93",
|
||||
"%. c #E0DE93",
|
||||
"&. c #E0DD98",
|
||||
"*. c #EFEB8E",
|
||||
"=. c #E2E294",
|
||||
"-. c #EBE093",
|
||||
";. c #E8E691",
|
||||
":. c #EFE997",
|
||||
">. c #EFF097",
|
||||
",. c #F4E380",
|
||||
"<. c #F2E28F",
|
||||
"1. c #FFE680",
|
||||
"2. c #FFE882",
|
||||
"3. c #FFE982",
|
||||
"4. c #FEEB84",
|
||||
"5. c #FFEC86",
|
||||
"6. c #FFEE88",
|
||||
"7. c #FFEF89",
|
||||
"8. c #F7EC97",
|
||||
"9. c #F0EA98",
|
||||
"0. c #F0EB9A",
|
||||
"q. c #F8EC92",
|
||||
"w. c #FFF28C",
|
||||
"e. c #FFF48E",
|
||||
"r. c #FFF68F",
|
||||
"t. c #F0F096",
|
||||
"y. c #F7F696",
|
||||
"u. c #F1F198",
|
||||
"i. c #F8F599",
|
||||
"p. c #FBF798",
|
||||
"a. c #FCF399",
|
||||
"s. c #FFF49B",
|
||||
"d. c #FFF699",
|
||||
"f. c #FFF799",
|
||||
"g. c #FCF79E",
|
||||
"h. c #FFFA94",
|
||||
"j. c #FFFD97",
|
||||
"k. c #FCFC99",
|
||||
"l. c #FEFD99",
|
||||
"z. c #FFFC99",
|
||||
"x. c #FEF7A0",
|
||||
"c. c #FFF6A0",
|
||||
"v. c #FFF6A2",
|
||||
"b. c #FFF7A9",
|
||||
"n. c #FFF8A1",
|
||||
"m. c #FFF8A2",
|
||||
"M. c #FFF8A3",
|
||||
"N. c #FFF8A5",
|
||||
"B. c #FFF8A6",
|
||||
"V. c #FEFAAB",
|
||||
"C. c #FFFCAE",
|
||||
"Z. c #FFFAB6",
|
||||
"A. c #FFFCB2",
|
||||
"S. c #FFFCB4",
|
||||
"D. c #FFFDB4",
|
||||
"F. c #F8FABA",
|
||||
"G. c #FFFCBC",
|
||||
"H. c #FFFCCA",
|
||||
"J. c None",
|
||||
/* pixels */
|
||||
"J.J.J.J.J.J.J.J.J.J.J.J.J.J.J.J.",
|
||||
"J.J.J.J.J.J.J.J.) W 4.e.J.J.J.J.",
|
||||
"J.J.J.J.J.) _ 3.5.*.O.k.k.J.J.J.",
|
||||
"J.J.~ _ 3.5.r.;.u.o.>.$.f.f.J.J.",
|
||||
"! 1.5.e.h.j.k.] .] .i.f.f.v.J.",
|
||||
"R h.y.@.u.%.....$.#.v.n.v.V.Q I ",
|
||||
"G -.=. .' { +.0.V.Z.D.D.,.P A m ",
|
||||
"y K g.f.:.0.n.B.G.H.Q L m j h n ",
|
||||
"D r T n.B.C.A.8.Y Z b N M l u , ",
|
||||
"F 6 G <.q.E S j z B x a w 7 : o ",
|
||||
"J.3 t U V f z x s i q 4 > * = J.",
|
||||
"J.+ < G d l p 0 5 1 ; % X J.J.J.",
|
||||
"J.J.$ 8 e 9 1 ; @ X J.J.J.J.J.",
|
||||
"J.J. O & $ X J.J.J.J.J.J.J.J.",
|
||||
"J.J.J. J.J.J.J.J.J.J.J.J.J.",
|
||||
"J.J.J.J.J.J.J.J.J.J.J.J.J.J.J.J."
|
||||
};
|
@ -0,0 +1,236 @@
|
||||
/* XPM */
|
||||
static char *knotes[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 198 2",
|
||||
" c #000000",
|
||||
". c #090906",
|
||||
"X c #0D0C08",
|
||||
"o c #100F0B",
|
||||
"O c #11100B",
|
||||
"+ c #151411",
|
||||
"@ c #1D1C13",
|
||||
"# c #24241A",
|
||||
"$ c #28271B",
|
||||
"% c #29291C",
|
||||
"& c #2D2D20",
|
||||
"* c #322F21",
|
||||
"= c #343323",
|
||||
"- c #3B3B27",
|
||||
"; c #3E3E28",
|
||||
": c #423F2B",
|
||||
"> c #44432C",
|
||||
", c #4C4D2E",
|
||||
"< c #484731",
|
||||
"1 c #4D4D32",
|
||||
"2 c #4C4E3E",
|
||||
"3 c #574823",
|
||||
"4 c #584921",
|
||||
"5 c #535335",
|
||||
"6 c #55553B",
|
||||
"7 c #585732",
|
||||
"8 c #5B5A34",
|
||||
"9 c #5C5C3B",
|
||||
"0 c #6E4E14",
|
||||
"q c #7C5D1F",
|
||||
"w c #645C2F",
|
||||
"e c #635934",
|
||||
"r c #645D38",
|
||||
"t c #7A5F22",
|
||||
"y c #7F601F",
|
||||
"u c #6F652E",
|
||||
"i c #646136",
|
||||
"p c #61603E",
|
||||
"a c #6B6333",
|
||||
"s c #766127",
|
||||
"d c #74612B",
|
||||
"f c #7C6323",
|
||||
"g c #766739",
|
||||
"h c #605E40",
|
||||
"j c #666445",
|
||||
"k c #6D6B4A",
|
||||
"l c #707247",
|
||||
"z c #7D8180",
|
||||
"x c #875E16",
|
||||
"c c #815E1B",
|
||||
"v c #895F15",
|
||||
"b c #8E6003",
|
||||
"n c #8E610C",
|
||||
"m c #84601B",
|
||||
"M c #8C6115",
|
||||
"N c #936404",
|
||||
"B c #91640B",
|
||||
"V c #96680B",
|
||||
"C c #9D6C01",
|
||||
"Z c #996D0B",
|
||||
"A c #916512",
|
||||
"S c #916518",
|
||||
"D c #956A13",
|
||||
"F c #94691C",
|
||||
"G c #996E12",
|
||||
"H c #996F1D",
|
||||
"J c #9F7108",
|
||||
"K c #9F7210",
|
||||
"L c #9A701A",
|
||||
"P c #976E23",
|
||||
"I c #986F25",
|
||||
"U c #9B7323",
|
||||
"Y c #A57400",
|
||||
"T c #AC7C02",
|
||||
"R c #A17513",
|
||||
"E c #A17619",
|
||||
"W c #A77A17",
|
||||
"Q c #A2781C",
|
||||
"! c #A57B20",
|
||||
"~ c #866C42",
|
||||
"^ c #817044",
|
||||
"/ c #8C764E",
|
||||
"( c #8C7950",
|
||||
") c #957749",
|
||||
"_ c #B28001",
|
||||
"` c #B68708",
|
||||
"' c #B88500",
|
||||
"] c #BC8A00",
|
||||
"[ c #8D8C5E",
|
||||
"{ c #908057",
|
||||
"} c #979565",
|
||||
"| c #9A9868",
|
||||
" . c #A6814F",
|
||||
".. c #AF8848",
|
||||
"X. c #B28C5A",
|
||||
"o. c #B39158",
|
||||
"O. c #AE8D62",
|
||||
"+. c #BA9461",
|
||||
"@. c #BC9A6D",
|
||||
"#. c #A6A570",
|
||||
"$. c #B5B47C",
|
||||
"%. c #C69400",
|
||||
"&. c #C99400",
|
||||
"*. c #CC9900",
|
||||
"=. c #C49A1E",
|
||||
"-. c #C89B17",
|
||||
";. c #D49F00",
|
||||
":. c #CEA31E",
|
||||
">. c #D8AB05",
|
||||
",. c #D9AC1B",
|
||||
"<. c #D8AC21",
|
||||
"1. c #DCB225",
|
||||
"2. c #E4AD00",
|
||||
"3. c #E1B524",
|
||||
"4. c #E3B928",
|
||||
"5. c #C19B5D",
|
||||
"6. c #DAB648",
|
||||
"7. c #D4B159",
|
||||
"8. c #C0A066",
|
||||
"9. c #C7A772",
|
||||
"0. c #CDAD72",
|
||||
"q. c #D2BB7B",
|
||||
"w. c #D5C67D",
|
||||
"e. c #EACA4B",
|
||||
"r. c #E5C956",
|
||||
"t. c #E9CC59",
|
||||
"y. c #E9CA67",
|
||||
"u. c #EDDA70",
|
||||
"i. c #F1D868",
|
||||
"p. c #FAD765",
|
||||
"a. c #FCD865",
|
||||
"s. c #F3DF72",
|
||||
"d. c #FFDD77",
|
||||
"f. c #FFDE78",
|
||||
"g. c #F1E17A",
|
||||
"h. c #FEE17B",
|
||||
"j. c #FFE87D",
|
||||
"k. c #868982",
|
||||
"l. c #898D82",
|
||||
"z. c #939384",
|
||||
"x. c #9B9D86",
|
||||
"c. c #9EA186",
|
||||
"v. c #A3A287",
|
||||
"b. c #A4A488",
|
||||
"n. c #AAA98F",
|
||||
"m. c #B4B48B",
|
||||
"M. c #BEBB85",
|
||||
"N. c #BCBC8B",
|
||||
"B. c #C7BF81",
|
||||
"V. c #C1BE8D",
|
||||
"C. c #C3C38D",
|
||||
"Z. c #C8C58E",
|
||||
"A. c #CAC88F",
|
||||
"S. c #C5C292",
|
||||
"D. c #CCCA90",
|
||||
"F. c #DDC88E",
|
||||
"G. c #D3CE90",
|
||||
"H. c #D3D190",
|
||||
"J. c #D8D793",
|
||||
"K. c #DCDC94",
|
||||
"L. c #E1CC82",
|
||||
"P. c #E2DB8D",
|
||||
"I. c #E3E294",
|
||||
"U. c #E3E298",
|
||||
"Y. c #E9E495",
|
||||
"T. c #EBE098",
|
||||
"R. c #EBEB96",
|
||||
"E. c #EDEC9E",
|
||||
"W. c #F6E58A",
|
||||
"Q. c #FDE682",
|
||||
"!. c #FEEB84",
|
||||
"~. c #FAEB8A",
|
||||
"^. c #F2EC95",
|
||||
"/. c #F2EB9D",
|
||||
"(. c #FEF28C",
|
||||
"). c #F3F197",
|
||||
"_. c #F3F298",
|
||||
"`. c #FFF691",
|
||||
"'. c #FEF59A",
|
||||
"]. c #FEFB94",
|
||||
"[. c #FEFC9A",
|
||||
"{. c #EBE9A1",
|
||||
"}. c #F3E8A0",
|
||||
"|. c #F5F0A3",
|
||||
" X c #FEF6A2",
|
||||
".X c #FCF5AC",
|
||||
"XX c #FEF8A5",
|
||||
"oX c #FEFAAC",
|
||||
"OX c #F5F6B3",
|
||||
"+X c #F6FABC",
|
||||
"@X c #FEFCB2",
|
||||
"#X c #FEFDBA",
|
||||
"$X c #FFFEC1",
|
||||
"%X c #FFFECD",
|
||||
"&X c #FFFFD7",
|
||||
"*X c #FFFFE2",
|
||||
"=X c gray100",
|
||||
"-X c None",
|
||||
/* pixels */
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-Xh.j.h.j.~.-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-Xh.h.h.j.w.!.(.(.].-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-Xh.h.h.j.j.!.(.M.N.].].].].-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-Xh.h.h.Q.Q.(.(.`.].].C.C.[.[.[.`.-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-Xf.f.h.h.Q.!.(.(.(.].].[.R.[.[.C.m.[.[.[.'.-X-X-X-X-X",
|
||||
"-X-X-X-Xf.f.h.j.!.!.(.(.`.].R.N.K.I.l.C.[.[.R.Z.R.[.'.'.-X-X-X-X",
|
||||
"a.f.f.h.j.Q.!.(.`.`.].].[.[.R.b.z R.C.l.K.D.[.I.^.'.'.'.'.-X-X-X",
|
||||
"y.!.!.!.(.(.`.].].[.[.[.[.).b.m.I.A.U.m.z.J.'.[.'.'.'.'. XoX+X-X",
|
||||
"@.~.(.`.].].[.R.R.[.).Y.C.I.K.Z.H.E.n.S.'.'.'.'.'.'.XXoX@X.XP.-X",
|
||||
"q.q.[.].[.K.x.H.K.[.Y.N.V.D.V.Z.C.XX.X|.XXXXXXXX XoX@XoXu.4.>.-X",
|
||||
"Z.o.U.[.[.c.x.c.k.I._.D.m.D.H.Y.'..X@X.X.XoXoX@X#X@Xi.3.>.%.T Z ",
|
||||
"} I 9..X[.R.^.R.z.z.b.v.R.T.[.'. X+X#X#X#X#X#X@Xg.1.*._ V n n V ",
|
||||
"#.9 .F.XX[.[.[.[.V.H.[.'.'. X XXX$X%X%X&X.Xi.,.' Y n n V V G Q ",
|
||||
"J.k g +.}.[.'.'.'.'.E. XXXXXoXoX@X&X*X.Xt.-.Y V A D K K Z N G E ",
|
||||
"{.[ 7 ) 0.XX'.'. X XXXXXoX@X#X#X@XW.6.` C n F W W E L V A A 0 4 ",
|
||||
"-X| p r X.L.@XXXXXoX@X#X#X@X~.r.=.Y N M L Q Q U F S M M q 4 O 2 ",
|
||||
"-X| j 5 / o.^.@X#X#X.X~.e.:.T N n S H L U U F S M m s w < @ . & ",
|
||||
"-X-Xj j r +.7.'.W.e.,.] C n M F U U U U S M m f u 8 , ; = * @ -X",
|
||||
"-X-X< h 7 ( @.1.*.T N n A F L U P F M v c d a 8 , ; % $ & -X-X-X",
|
||||
"-X-X@ < 5 9 @...N n D D H P F S v q s a i 9 , ; & @ X -X-X-X-X-X",
|
||||
"-X-X # > 1 ( o.N Z D D D M m t w a 8 1 ; = % @ . -X-X-X-X-X-X-X",
|
||||
"-X-X-X. $ > j o.V B M M m w i 5 1 > = % + O . -X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X X % > ^ S q d r 9 5 > = # @ X . -X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X X $ > e h 6 < = $ @ X . -X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X X @ & = % @ X . -X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X . X o X -X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X -X -X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X -X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X-X"
|
||||
};
|
@ -0,0 +1,134 @@
|
||||
/* XPM */
|
||||
static char *kontact-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 112 2",
|
||||
" c black",
|
||||
". c #343434",
|
||||
"X c #333845",
|
||||
"o c #393F49",
|
||||
"O c gray35",
|
||||
"+ c gray40",
|
||||
"@ c DimGray",
|
||||
"# c #727272",
|
||||
"$ c #767676",
|
||||
"% c gray47",
|
||||
"& c #7C7C82",
|
||||
"* c #416FD2",
|
||||
"= c #4A71C6",
|
||||
"- c #5883DF",
|
||||
"; c #749BF0",
|
||||
": c #FFD048",
|
||||
"> c gray51",
|
||||
", c gray53",
|
||||
"< c #80848D",
|
||||
"1 c #888888",
|
||||
"2 c gray55",
|
||||
"3 c #8D8D8D",
|
||||
"4 c gray57",
|
||||
"5 c #979797",
|
||||
"6 c gray61",
|
||||
"7 c #9D9D9D",
|
||||
"8 c #9F9F9F",
|
||||
"9 c #A19C8F",
|
||||
"0 c #A2A2A2",
|
||||
"q c #A4A4A4",
|
||||
"w c gray65",
|
||||
"e c gray66",
|
||||
"r c #A9A9A9",
|
||||
"t c gray68",
|
||||
"y c #AEAEAE",
|
||||
"u c #A4A8B0",
|
||||
"i c #ACAEB2",
|
||||
"p c #AEACB6",
|
||||
"a c gray69",
|
||||
"s c #B2B2B2",
|
||||
"d c #B6B6B6",
|
||||
"f c #B7B7B7",
|
||||
"g c #B0B2BA",
|
||||
"h c #B9B9B9",
|
||||
"j c #BBBBBB",
|
||||
"k c gray75",
|
||||
"l c #889DC5",
|
||||
"z c #94A9CE",
|
||||
"x c #95A9CF",
|
||||
"c c #A5B1CB",
|
||||
"v c #A9B2C2",
|
||||
"b c #A1B2D7",
|
||||
"n c #B5B9C2",
|
||||
"m c #A1B4E3",
|
||||
"M c #AABDE2",
|
||||
"N c #A9BBED",
|
||||
"B c #BEC2C9",
|
||||
"V c #C5BB9F",
|
||||
"C c gray76",
|
||||
"Z c #C5C5C5",
|
||||
"A c gray79",
|
||||
"S c #CBCBCB",
|
||||
"D c #CDCDCD",
|
||||
"F c #CECECE",
|
||||
"G c #C2C2D3",
|
||||
"H c #C6C9D6",
|
||||
"J c #C9C9D8",
|
||||
"K c #D2D2D2",
|
||||
"L c gray83",
|
||||
"P c gray84",
|
||||
"I c #DADADE",
|
||||
"U c gainsboro",
|
||||
"Y c #C3D4FF",
|
||||
"T c #C9DBFE",
|
||||
"R c #D6D6E8",
|
||||
"E c #D7DAE2",
|
||||
"W c #D2DAEF",
|
||||
"Q c #DADAE4",
|
||||
"! c #DCDCE3",
|
||||
"~ c #DBDBE8",
|
||||
"^ c #CDE0FF",
|
||||
"/ c #D7E8FF",
|
||||
"( c #DAE7FF",
|
||||
") c #DAEBFF",
|
||||
"_ c #DCEDFF",
|
||||
"` c #E8E0DE",
|
||||
"' c #FCE4C1",
|
||||
"] c #FBF1D8",
|
||||
"[ c gray88",
|
||||
"{ c #E4E4E4",
|
||||
"} c #E7E7E7",
|
||||
"| c #E3E3ED",
|
||||
" . c #E7E7EC",
|
||||
".. c #E3E3FC",
|
||||
"X. c #EBEDF1",
|
||||
"o. c #E9E9FF",
|
||||
"O. c gray94",
|
||||
"+. c #F0F0F1",
|
||||
"@. c #F1F1F1",
|
||||
"#. c #F3F3F3",
|
||||
"$. c #F4F4F4",
|
||||
"%. c gray96",
|
||||
"&. c #F1F4F8",
|
||||
"*. c #F4F4FF",
|
||||
"=. c #FBFBFB",
|
||||
"-. c #FBFDFF",
|
||||
";. c gray99",
|
||||
":. c #FDFDFD",
|
||||
">. c #FCFCFE",
|
||||
",. c #FEFEFE",
|
||||
"<. c gray100",
|
||||
"1. c None",
|
||||
/* pixels */
|
||||
"1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.",
|
||||
"O % % % % % 4 Z F i x l . 1.1.1.",
|
||||
"r P <.<.<.#.[ &._ / <.^ < %.<.1.",
|
||||
"P d S + 7 $ v T -.<.<.<.| J #.1.",
|
||||
"S 7 U k P =.<.Z d <.<.' Q G #.0 ",
|
||||
"K [ X.5 $ O O Z { <.<.: p 9 .7 ",
|
||||
"B ) W 5 , + r <.<.<.<.] V ` <.w ",
|
||||
"z *.R <.<.<.<.<.<.<.%.Z & # 2 d ",
|
||||
"u ( ..<.P { q 5 $ , a S <.<.=.F ",
|
||||
"y M o.I O , + <.<.<.<.<.<.<.#.C ",
|
||||
"2 n Y ! d { <.<.<.<.{ P y q , > ",
|
||||
"+ y b H <.#.E c g y j j + 1.1.1.",
|
||||
". . o m ~ N = X . . . . . 1.1.1.",
|
||||
"1.1.1.- ; * 1.1.1.1.1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1."
|
||||
};
|
@ -0,0 +1,165 @@
|
||||
/* XPM */
|
||||
static char *kontact[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 127 2",
|
||||
" c black",
|
||||
". c gray9",
|
||||
"X c gray14",
|
||||
"o c #2C2C2C",
|
||||
"O c #2A2C33",
|
||||
"+ c #333333",
|
||||
"@ c #3E3E3E",
|
||||
"# c #172C58",
|
||||
"$ c #3A404B",
|
||||
"% c #404040",
|
||||
"& c #4A4B4B",
|
||||
"* c #545454",
|
||||
"= c #595959",
|
||||
"- c #555D6F",
|
||||
"; c #5E656F",
|
||||
": c #5E6A7D",
|
||||
"> c #646464",
|
||||
", c #6B6B6B",
|
||||
"< c #757575",
|
||||
"1 c #7C7C7C",
|
||||
"2 c #375192",
|
||||
"3 c #385BAE",
|
||||
"4 c #3460CD",
|
||||
"5 c #3B66CD",
|
||||
"6 c #476AB6",
|
||||
"7 c #5E76AD",
|
||||
"8 c #607293",
|
||||
"9 c #416BCD",
|
||||
"0 c #5279D8",
|
||||
"q c #6F87BF",
|
||||
"w c #7B92C2",
|
||||
"e c #7E96D3",
|
||||
"r c #7294E8",
|
||||
"t c #7A9BED",
|
||||
"y c #BDAF79",
|
||||
"u c #D1AC2C",
|
||||
"i c #C4BC52",
|
||||
"p c #E9AD4B",
|
||||
"a c #FFCB00",
|
||||
"s c #FFC429",
|
||||
"d c #EFD37D",
|
||||
"f c #858585",
|
||||
"g c #8C8C8C",
|
||||
"h c #949494",
|
||||
"j c #9C9C9C",
|
||||
"k c #9090A6",
|
||||
"l c #A5A5A5",
|
||||
"z c #A4A6AE",
|
||||
"x c #A6A8AC",
|
||||
"c c #AFA7AF",
|
||||
"v c #ACABAB",
|
||||
"b c #A2A2B6",
|
||||
"n c #A7A7BB",
|
||||
"m c #A6AFBF",
|
||||
"M c #AFB4BE",
|
||||
"N c #B5B5B5",
|
||||
"B c #B0B4BF",
|
||||
"V c #BDBDBD",
|
||||
"C c #879EDA",
|
||||
"Z c #99AFDC",
|
||||
"A c #91ADE6",
|
||||
"S c #9FB7E8",
|
||||
"D c #A6B0C4",
|
||||
"F c #A5B6D4",
|
||||
"G c #B3B3C4",
|
||||
"H c #BFBFC4",
|
||||
"J c #BCBCCA",
|
||||
"K c #BFBFD0",
|
||||
"L c #A3BAEE",
|
||||
"P c #ACBFE8",
|
||||
"I c #A5BEF1",
|
||||
"U c #AABFF7",
|
||||
"Y c #BAC2D0",
|
||||
"T c #AAC3EE",
|
||||
"R c #AFC9F7",
|
||||
"E c #BDC3E1",
|
||||
"W c #BFCDE7",
|
||||
"Q c #B5CBFF",
|
||||
"! c #BBD1FE",
|
||||
"~ c #DACD93",
|
||||
"^ c #DFD394",
|
||||
"/ c #DEC9A6",
|
||||
"( c #E0D2BD",
|
||||
") c #E8D1B0",
|
||||
"_ c #F5D5AA",
|
||||
"` c #C4C4C4",
|
||||
"' c #C4C4CB",
|
||||
"] c #C5C9CC",
|
||||
"[ c #CBCBCB",
|
||||
"{ c #C4C4D3",
|
||||
"} c #CACAD3",
|
||||
"| c #CCCCD8",
|
||||
" . c #C6D0DE",
|
||||
".. c #CDD2DB",
|
||||
"X. c #D2D2D2",
|
||||
"o. c #D2D2DC",
|
||||
"O. c #D9D9D9",
|
||||
"+. c #CCCCE4",
|
||||
"@. c #C2D0E7",
|
||||
"#. c #C3D3FE",
|
||||
"$. c #C5D9FE",
|
||||
"%. c #C9D5FF",
|
||||
"&. c #CDDFFF",
|
||||
"*. c #D2D2E4",
|
||||
"=. c #D2D2ED",
|
||||
"-. c #D3D8E1",
|
||||
";. c #DEDEE4",
|
||||
":. c #DBDBEF",
|
||||
">. c #D1DAF4",
|
||||
",. c #D3DEFF",
|
||||
"<. c #DCDCF7",
|
||||
"1. c #D9DBF9",
|
||||
"2. c #D5E0FF",
|
||||
"3. c #DAE8FF",
|
||||
"4. c #E4E4E4",
|
||||
"5. c #E3E3E9",
|
||||
"6. c #ECECEC",
|
||||
"7. c #E2E2F7",
|
||||
"8. c #E5E5FF",
|
||||
"9. c #EEEEF3",
|
||||
"0. c #E8E8FF",
|
||||
"q. c #EDF1FF",
|
||||
"w. c #F4F4F4",
|
||||
"e. c #F4F4F8",
|
||||
"r. c #F7F9FF",
|
||||
"t. c #FEFEFE",
|
||||
"y. c None",
|
||||
/* pixels */
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"o + % = = = * = = * = * = 1 1 < > > , > > - 8 ; o y.y.y.y.y.y.y.",
|
||||
"= ` [ X.X.[ X.X.X.[ X.X.X.X.6.w.e.e.6.Y L &.! D o y.y.y.y.y.y.y.",
|
||||
"* 4.4.t.t.t.4.4.4.4.4.4.4.4.4.4.4.;.Z ! r.t.t.A @ y.y.y.y.y.y.y.",
|
||||
"* t.6.` 6.t.t.t.t.t.t.X.` X.X.t.$.! r.t.t.t.t.$.; [ 4.6.6.l y.y.",
|
||||
"> 6.N j N V V V V ` V V l j F Q q.t.r.e.6.6.w.4.6.r.;.} t.V y.y.",
|
||||
"> 4.6.X.6.t.g = N N y - W T >.9.9.9.t.t.t.t.r.9.t.| e.} t.V y.y.",
|
||||
"> w.X.N 6.t.` f > 1 { G w.t.t.t.t.t.t.t.t.e.t.( t.| { t.t.` y.y.",
|
||||
"> 4.N j j V O.w.t.t.r.t.t.t.f l > N t.t.t.t.) _ 9.{ | n 5.O.h y.",
|
||||
"> w.t.t.w.w.t.` e.e.X.X + = l f N 6.t.t.t.9.p s ;.y c b ' 4.h y.",
|
||||
"= 4.N N x ;.l X % = h h O.O.t.t.t.t.t.t.t.9./ a b i u k o.e.g y.",
|
||||
"> 4.t.3.T ..w.f 6.h , . & f t.t.t.t.t.t.t.t.5.~ d ^ c G w.w.v y.",
|
||||
"= .R 2.=.o.t., > f O.w.t.t.t.t.t.t.t.t.t.t.;.w.J G t.;.w.w.N y.",
|
||||
": #.0.0.=.K t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.r.o.` l 1 > ` f ",
|
||||
"& ! 8.0.1.{ w.t.t.t.t.t.t.t.t.t.t.t.t.t.t.4.N > % * 1 * N w.X.y ",
|
||||
"& @.,.0.8.+.4.t.t.t.t.t.t.t.t.` O.f , = = h g 6.t.w.w.w.6.6.;.8 ",
|
||||
", [ I 0.8.+.4.t.` N O.N < = = f < ` w.t.t.t.t.w.w.w.w.w.6.6.4.j ",
|
||||
"< 4.m %.0.+.o.4.@ = h h O.` t.t.t.t.t.t.t.t.w.t.w.w.6.6.w.6.4.v ",
|
||||
", O.V S 0.=.' t.l h N 1 = f t.t.t.t.t.t.e.t.w.w.w.w.w.6.6.4.[ h ",
|
||||
"< O.O.D Q <.{ w.h , l 4.t.t.t.t.t.t.t.e.w.w.w.w.4.X.N j g , - y ",
|
||||
"= V N V Z 1.| O.t.t.t.t.t.t.t.t.t.t.t.4.X.V N j h & y.y.y.",
|
||||
"* ] V V G U *.} t.t.t.t.t.t.6.X.V v j j N l l N l o y.y.y.y.y.y.",
|
||||
"@ f h v v w @.' t.4.O.` H B q 7 z N ` g ` N V V j o y.y.y.y.y.y.",
|
||||
"o o o o o O C { K } *.*.C 2 $ & & & & % & & & & @ o y.y.y.y.y.y.",
|
||||
"y.y.y.y.y. 6 K :.7.L 0 4 y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.# t #.r 5 y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y. 3 9 y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.",
|
||||
"y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y."
|
||||
};
|
@ -0,0 +1,220 @@
|
||||
/* XPM */
|
||||
static char *korganizer-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 198 2",
|
||||
" c black",
|
||||
". c #000200",
|
||||
"X c #020300",
|
||||
"o c #000700",
|
||||
"O c #000800",
|
||||
"+ c #000900",
|
||||
"@ c #000B00",
|
||||
"# c #001003",
|
||||
"$ c #001F04",
|
||||
"% c #032708",
|
||||
"& c #002903",
|
||||
"* c #002B04",
|
||||
"= c #002F06",
|
||||
"- c #042E04",
|
||||
"; c #003106",
|
||||
": c #063108",
|
||||
"> c #033E05",
|
||||
", c #003C0A",
|
||||
"< c #003E0B",
|
||||
"1 c #273E0A",
|
||||
"2 c #00400B",
|
||||
"3 c #004716",
|
||||
"4 c #01451A",
|
||||
"5 c #005213",
|
||||
"6 c #005915",
|
||||
"7 c #005F1A",
|
||||
"8 c #085018",
|
||||
"9 c #006B19",
|
||||
"0 c #006F18",
|
||||
"q c #006F1A",
|
||||
"w c #0F661E",
|
||||
"e c #0D7415",
|
||||
"r c #096430",
|
||||
"t c #146B25",
|
||||
"y c #4E617B",
|
||||
"u c #79737D",
|
||||
"i c #4E6380",
|
||||
"p c #5D7A97",
|
||||
"a c #637FA6",
|
||||
"s c #008C1D",
|
||||
"d c #008C1E",
|
||||
"f c #008425",
|
||||
"g c #008927",
|
||||
"h c #008B2C",
|
||||
"j c #008F2F",
|
||||
"k c #098922",
|
||||
"l c #02952F",
|
||||
"z c #009934",
|
||||
"x c #138D21",
|
||||
"c c #198220",
|
||||
"v c #0DA72F",
|
||||
"b c #0FA62F",
|
||||
"n c #0FA82F",
|
||||
"m c #0EA13D",
|
||||
"M c #0CA830",
|
||||
"N c #07B034",
|
||||
"B c #09B034",
|
||||
"V c #09B036",
|
||||
"C c #0DB337",
|
||||
"Z c #10A62F",
|
||||
"A c #279E22",
|
||||
"S c #08B841",
|
||||
"D c #24915F",
|
||||
"F c #2C9B66",
|
||||
"G c #35966C",
|
||||
"H c #09C04D",
|
||||
"J c #1CC056",
|
||||
"K c #34CB64",
|
||||
"L c #409E20",
|
||||
"P c #5B833F",
|
||||
"I c #6E9816",
|
||||
"U c #6D9920",
|
||||
"Y c #47B16A",
|
||||
"T c #53AA7D",
|
||||
"R c #5EDB44",
|
||||
"E c #3BAF8C",
|
||||
"W c #3DA49F",
|
||||
"Q c #6482A3",
|
||||
"! c #7091B8",
|
||||
"~ c #78BF9A",
|
||||
"^ c #6793CA",
|
||||
"/ c #6699D7",
|
||||
"( c #6A9BD8",
|
||||
") c #709ED3",
|
||||
"_ c #77A0D3",
|
||||
"` c #74A2D7",
|
||||
"' c #72A0DA",
|
||||
"] c #7DA8D8",
|
||||
"[ c #6EA2E1",
|
||||
"{ c #6ED792",
|
||||
"} c #60C5AA",
|
||||
"| c #B01702",
|
||||
" . c #8D4B10",
|
||||
".. c #8D6111",
|
||||
"X. c #AC6F3E",
|
||||
"o. c #896357",
|
||||
"O. c #D57207",
|
||||
"+. c #E94600",
|
||||
"@. c #ED7500",
|
||||
"#. c #F26500",
|
||||
"$. c #F66400",
|
||||
"%. c #F26800",
|
||||
"&. c #F76A00",
|
||||
"*. c #F96900",
|
||||
"=. c #FD6F00",
|
||||
"-. c #FE6D00",
|
||||
";. c #F57300",
|
||||
":. c #F57700",
|
||||
">. c #F67800",
|
||||
",. c #FD7200",
|
||||
"<. c #FE7000",
|
||||
"1. c #FE7300",
|
||||
"2. c #FD7700",
|
||||
"3. c #FE7400",
|
||||
"4. c #FE7800",
|
||||
"5. c #FE7900",
|
||||
"6. c #FC7C00",
|
||||
"7. c #FE7C00",
|
||||
"8. c #D57C53",
|
||||
"9. c #8C7D84",
|
||||
"0. c #8D870D",
|
||||
"q. c #83B354",
|
||||
"w. c #AC9674",
|
||||
"e. c #B2846D",
|
||||
"r. c #FD8100",
|
||||
"t. c #FE8400",
|
||||
"y. c #F1922D",
|
||||
"u. c #FCAA00",
|
||||
"i. c #FDAA00",
|
||||
"p. c #FEA800",
|
||||
"a. c #FDA906",
|
||||
"s. c #FEA212",
|
||||
"d. c #FEBD08",
|
||||
"f. c #F5B11B",
|
||||
"g. c #FEA434",
|
||||
"h. c #F5B73A",
|
||||
"j. c #D79559",
|
||||
"k. c #F1AC51",
|
||||
"l. c #FDD000",
|
||||
"z. c #FED200",
|
||||
"x. c #FED007",
|
||||
"c. c #FED704",
|
||||
"v. c #FED62F",
|
||||
"b. c #FEE219",
|
||||
"n. c #FEE026",
|
||||
"m. c #FECB40",
|
||||
"M. c #E3D17B",
|
||||
"N. c #FEEE47",
|
||||
"B. c #95868B",
|
||||
"V. c #81AADA",
|
||||
"C. c #89ACD6",
|
||||
"Z. c #8CACD3",
|
||||
"A. c #81B3EC",
|
||||
"S. c #90BDF0",
|
||||
"D. c #89D1BB",
|
||||
"F. c #99CCB9",
|
||||
"G. c #90E3B3",
|
||||
"H. c #A6C293",
|
||||
"J. c #95C0EB",
|
||||
"K. c #9EC4E8",
|
||||
"L. c #A2D8DE",
|
||||
"P. c #A1C8E9",
|
||||
"I. c #A7C9E9",
|
||||
"U. c #A9C2E1",
|
||||
"Y. c #ACC3ED",
|
||||
"T. c #A3CCF2",
|
||||
"R. c #A4D2FD",
|
||||
"E. c #A4D7FE",
|
||||
"W. c #ABD8FD",
|
||||
"Q. c #ABDBFE",
|
||||
"!. c #B8C8E6",
|
||||
"~. c #B8D8F0",
|
||||
"^. c #BCDAF7",
|
||||
"/. c #BEDCF5",
|
||||
"(. c #AEE9ED",
|
||||
"). c #B8E6FE",
|
||||
"_. c #B9ECF2",
|
||||
"`. c #D6AB85",
|
||||
"'. c #E9C8A6",
|
||||
"]. c #FEF891",
|
||||
"[. c #F3F5BC",
|
||||
"{. c #C3C2C6",
|
||||
"}. c #CFD6ED",
|
||||
"|. c #D5D7F6",
|
||||
" X c #C9F3DE",
|
||||
".X c #CEE6E0",
|
||||
"XX c #C4F2E2",
|
||||
"oX c #DEE4F6",
|
||||
"OX c #DAEEFE",
|
||||
"+X c #DCE9FE",
|
||||
"@X c #D7F6FE",
|
||||
"#X c #E7FCFE",
|
||||
"$X c #EBF2FE",
|
||||
"%X c #E9F9FE",
|
||||
"&X c #FEE4E3",
|
||||
"*X c #F1F3FE",
|
||||
"=X c #F2F6FE",
|
||||
"-X c None",
|
||||
/* pixels */
|
||||
"-X-X-X-X-X-X-X:.h.8.| -X-X-X-X-X",
|
||||
"-X-X-X-X-X-X-Xu.x.g. .k q -X-X-X",
|
||||
"-X-X-X-X-X-X2.z.u.+.P S d , -X-X",
|
||||
"-X-X-X-X-X-Xu.z.t...XX.Xm q -X-X",
|
||||
"-X-X-X-X-Xr.c.d.O.H.%X+XF.l g -X",
|
||||
"-X-X-X-X-Xa.b.s.j.@X^./.$X~ f j ",
|
||||
"-X-X-X-X6.n.v.y.{.E.T.I.U.}.T h ",
|
||||
"-X-X-X-Xf.N.m.X.] A.V.Z.Z.|.D.3 ",
|
||||
"-XC K { M.].k.u i ^ ' _ Y.L.r ",
|
||||
"x e.*XoX`.'.B.( a y / S.).F @ -X",
|
||||
"> G _.~.o.9.` ) [ Q p W.E $ -X-X",
|
||||
" 6 R [.!.P.K.J.R.W.! W 4 -X-X-X",
|
||||
"-X@ e w.&XOX=X#X(.} F 8 -X-X-X",
|
||||
"-X-X@ c q.XXG.Y t - @ -X-X-X-X",
|
||||
"-X-X-X% k w : @ -X-X-X-X-X-X-X",
|
||||
"-X-X-X -X-X-X-X-X-X-X-X-X-X"
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *korganizer[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #001C00",
|
||||
"X c #033708",
|
||||
"o c #0C4302",
|
||||
"O c #00450E",
|
||||
"+ c #005E1B",
|
||||
"@ c #1B5401",
|
||||
"# c #006B1F",
|
||||
"$ c #19610E",
|
||||
"% c #0E680B",
|
||||
"& c #026321",
|
||||
"* c #0E7E31",
|
||||
"= c #1D722B",
|
||||
"- c #2A7A57",
|
||||
"; c #4C7214",
|
||||
": c #4E5968",
|
||||
"> c #505968",
|
||||
", c #576A75",
|
||||
"< c #577263",
|
||||
"1 c #616972",
|
||||
"2 c #61707F",
|
||||
"3 c #637387",
|
||||
"4 c #677A94",
|
||||
"5 c #008129",
|
||||
"6 c #008E35",
|
||||
"7 c #008839",
|
||||
"8 c #01943B",
|
||||
"9 c #019C3B",
|
||||
"0 c #049637",
|
||||
"q c #118636",
|
||||
"w c #129B32",
|
||||
"e c #03AA3C",
|
||||
"r c #00A73E",
|
||||
"t c #1CAE35",
|
||||
"y c #20851F",
|
||||
"u c #3C911F",
|
||||
"i c #219B2D",
|
||||
"p c #3B9725",
|
||||
"a c #299536",
|
||||
"s c #2AA43B",
|
||||
"d c #37B139",
|
||||
"f c #058F5E",
|
||||
"g c #009D43",
|
||||
"h c #029A46",
|
||||
"j c #07995A",
|
||||
"k c #118A4C",
|
||||
"l c #189943",
|
||||
"z c #0E9176",
|
||||
"x c #13976B",
|
||||
"c c #00A343",
|
||||
"v c #00AB43",
|
||||
"b c #0BA444",
|
||||
"n c #09BB43",
|
||||
"m c #04B644",
|
||||
"M c #1AAB4F",
|
||||
"N c #17B941",
|
||||
"B c #1CBB56",
|
||||
"V c #19B557",
|
||||
"C c #1AA36F",
|
||||
"Z c #35946B",
|
||||
"A c #29B444",
|
||||
"S c #2FBA50",
|
||||
"D c #31BB48",
|
||||
"F c #28AC7F",
|
||||
"G c #2DB37F",
|
||||
"H c #0CC445",
|
||||
"J c #20C859",
|
||||
"K c #38C14C",
|
||||
"L c #44A02A",
|
||||
"P c #5E9141",
|
||||
"I c #4FAC41",
|
||||
"U c #45D178",
|
||||
"Y c #50D97E",
|
||||
"T c #5EE56B",
|
||||
"R c #3CA08E",
|
||||
"E c #3CA497",
|
||||
"W c #409F9F",
|
||||
"Q c #50B3A9",
|
||||
"! c #43AAA9",
|
||||
"~ c #6D8197",
|
||||
"^ c #70839F",
|
||||
"/ c #7B95B5",
|
||||
"( c #68AD97",
|
||||
") c #7EBCA9",
|
||||
"_ c #7F9CC2",
|
||||
"` c #74A2D6",
|
||||
"' c #7CAADC",
|
||||
"] c #78A6D8",
|
||||
"[ c #7AACE1",
|
||||
"{ c #76ADE5",
|
||||
"} c #70C9B9",
|
||||
"| c #7BD0B9",
|
||||
" . c #73E09C",
|
||||
".. c #7FC6CD",
|
||||
"X. c #7CC3E2",
|
||||
"o. c #AE1F00",
|
||||
"O. c #B93100",
|
||||
"+. c #98542B",
|
||||
"@. c #AD5300",
|
||||
"#. c #A55E3E",
|
||||
"$. c #B2703E",
|
||||
"%. c #80574B",
|
||||
"&. c #8A655D",
|
||||
"*. c #B76541",
|
||||
"=. c #AB6D4F",
|
||||
"-. c #C23100",
|
||||
";. c #D14100",
|
||||
":. c #C96310",
|
||||
">. c #D86A1B",
|
||||
",. c #CF6024",
|
||||
"<. c #C36331",
|
||||
"1. c #D67035",
|
||||
"2. c #EB5C00",
|
||||
"3. c #F56F04",
|
||||
"4. c #F77E00",
|
||||
"5. c #FF4545",
|
||||
"6. c #8D9A32",
|
||||
"7. c #918550",
|
||||
"8. c #AE8067",
|
||||
"9. c #ACFF7B",
|
||||
"0. c #FE8503",
|
||||
"q. c #FD8A00",
|
||||
"w. c #FA8A04",
|
||||
"e. c #FF8A1C",
|
||||
"r. c #FD9200",
|
||||
"t. c #FF9A0E",
|
||||
"y. c #FF961D",
|
||||
"u. c #FF972F",
|
||||
"i. c #EB8937",
|
||||
"p. c #FEA200",
|
||||
"a. c #FFAE02",
|
||||
"s. c #FFAE09",
|
||||
"d. c #FFB400",
|
||||
"f. c #FFBA00",
|
||||
"g. c #FFB70D",
|
||||
"h. c #FFA923",
|
||||
"j. c #FFA432",
|
||||
"k. c #FFBA36",
|
||||
"l. c #DC9852",
|
||||
"z. c #C3896B",
|
||||
"x. c #DAB243",
|
||||
"c. c #EE9B4E",
|
||||
"v. c #FFB24B",
|
||||
"b. c #F9B259",
|
||||
"n. c #FFB570",
|
||||
"m. c #FFC200",
|
||||
"M. c #FFCA00",
|
||||
"N. c #FFC40B",
|
||||
"B. c #FFCB14",
|
||||
"V. c #FFC61F",
|
||||
"C. c #FFD400",
|
||||
"Z. c #FFCC27",
|
||||
"A. c #FFD32B",
|
||||
"S. c #FFD337",
|
||||
"D. c #FFEC01",
|
||||
"F. c #FFE009",
|
||||
"G. c #FFE81C",
|
||||
"H. c #FFF200",
|
||||
"J. c #FFF714",
|
||||
"K. c #FFE821",
|
||||
"L. c #FFED38",
|
||||
"P. c #FFF738",
|
||||
"I. c #FFC749",
|
||||
"U. c #FFD948",
|
||||
"Y. c #FFDE50",
|
||||
"T. c #FFC866",
|
||||
"R. c #FFD763",
|
||||
"E. c #FFD778",
|
||||
"W. c #FFE244",
|
||||
"Q. c #FFE15B",
|
||||
"!. c #F7FF41",
|
||||
"~. c #FFFE55",
|
||||
"^. c #FFE867",
|
||||
"/. c #FFFC63",
|
||||
"(. c #FFFA73",
|
||||
"). c #809BB9",
|
||||
"_. c #9597A3",
|
||||
"`. c #8BAACB",
|
||||
"'. c #82AAD6",
|
||||
"]. c #84ADDC",
|
||||
"[. c #8AADD6",
|
||||
"{. c #8CB2DA",
|
||||
"}. c #9AB1CF",
|
||||
"|. c #96B4D6",
|
||||
" X c #95B6DB",
|
||||
".X c #8CB4E3",
|
||||
"XX c #85BBEE",
|
||||
"oX c #95BBE4",
|
||||
"OX c #9ABCE6",
|
||||
"+X c #89BCF2",
|
||||
"@X c #AABACF",
|
||||
"#X c #A2BCD9",
|
||||
"$X c #8EE8B1",
|
||||
"%X c #82C6FF",
|
||||
"&X c #9DC8EE",
|
||||
"*X c #91C2EE",
|
||||
"=X c #9BC9F5",
|
||||
"-X c #97CCFC",
|
||||
";X c #8DC8EB",
|
||||
":X c #82E0D8",
|
||||
">X c #A4CFC6",
|
||||
",X c #A4C0DC",
|
||||
"<X c #B5DDDA",
|
||||
"1X c #A6C3E5",
|
||||
"2X c #A3C8E7",
|
||||
"3X c #ADCCE7",
|
||||
"4X c #ACCCEA",
|
||||
"5X c #A6C8EC",
|
||||
"6X c #A2C8F2",
|
||||
"7X c #ACD0EE",
|
||||
"8X c #A5D4FF",
|
||||
"9X c #A9D3FA",
|
||||
"0X c #B5CBE6",
|
||||
"qX c #B6D5EE",
|
||||
"wX c #B5D4EB",
|
||||
"eX c #B2DEFF",
|
||||
"rX c #BBDAF7",
|
||||
"tX c #B5D8FA",
|
||||
"yX c #BAE5FF",
|
||||
"uX c #D1A08A",
|
||||
"iX c #FB8F97",
|
||||
"pX c #FF9B94",
|
||||
"aX c #FF9BAC",
|
||||
"sX c #FFB4E0",
|
||||
"dX c #FFD58A",
|
||||
"fX c #E0CFBD",
|
||||
"gX c #FFEC9E",
|
||||
"hX c #FFFBA0",
|
||||
"jX c #C5D9EE",
|
||||
"kX c #C1DFFE",
|
||||
"lX c #C6DBF3",
|
||||
"zX c #D2DCEB",
|
||||
"xX c #D3DFF2",
|
||||
"cX c #C3FAD8",
|
||||
"vX c #C2E6FF",
|
||||
"bX c #CCE4F7",
|
||||
"nX c #CAECFF",
|
||||
"mX c #CBE6FE",
|
||||
"MX c #D3ECFD",
|
||||
"NX c #DBEEFE",
|
||||
"BX c #D6E3F6",
|
||||
"VX c #DCF3FD",
|
||||
"CX c #D4F5F9",
|
||||
"ZX c #FFE8C9",
|
||||
"AX c #FFE5C2",
|
||||
"SX c #FFF4C1",
|
||||
"DX c #FFF9DB",
|
||||
"FX c #E9FBE8",
|
||||
"GX c #E1F3FD",
|
||||
"HX c #ECFDFF",
|
||||
"JX c #E7FCF9",
|
||||
"KX c #F5FFFF",
|
||||
"LX c #FEFEFF",
|
||||
"PX c #FFFFF3",
|
||||
"IX c #E4E6F2",
|
||||
"UX c #D3CFCF",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXw.c.1.O.o.YXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXw.C.(.DXZX,.o.YXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXr.H.m.Z.dXn.o.YX# YXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYX0.M.D.d.a.0.2.o.H H 5 YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXr.H.M.d.t.0.-.H e n e * YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYX0.m.H.d.d.q.2.o.Y JX0 H e # YXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXw.H.C.f.p.w.;.J LXLX<Xr e 9 O YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXq.f.H.m.m.t.3.; cXLXKXKX} e m 0 YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXr.H.F.N.g.y.@. .LXLXqXGXPXZ v v 6 YXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXm.J.B.B.h.e.P LXLXbXGXbXbXLXk v c 6 YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXq.G.G.V.Z.j.:.CXKXMXNXqXqXKXGXJX7 v 9 v YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXf.P.A.Z.k.u.uXHXVXrX4XNXNXqXbXLX>X7 c 8 YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXq.L.!.S.S.v.>.VXGX&XtXmXrXwXBXzX0XLX( h g g ",
|
||||
"YXYXYXYXYXYXYXYXYXYXd.~.U.U.I.v.z.MX*XtXyX&X4X0X,X|.zX#XLXZ h b ",
|
||||
"YXYXYXYXYXYXYXYXYXr.U.~.Y.Y.T.>.@X=XeX=X.X1X1X[.0X0X|.IXKX<Xh + ",
|
||||
"YXYXYXYXYXYXYXYXYXs.(.^.Q.R.T.+., tX' ].oX{.'.0X X[.xXBXBXC q ",
|
||||
"YXYXYXYXYXYXn n Q x.hX^.^.E.i._.3 , OX].` ].5X'. X0XxXxXR 0 ",
|
||||
"YXYXYXH H U $XJXPXb.DXSXgXdX*.' ).> 4 ] .X.X` OXOXlXbX..h X YX",
|
||||
"YXH s &.FXLXLXLXVXl.DXDXZX$.}.'..X^ > / ] ' .X].kXMXyXj + YXYX",
|
||||
"YXt = 5.iXLXqXqXGX$.fXZX=.`.'.] ] 6X4 > _ { { yXvXnXx l YXYXYX",
|
||||
"YXo N - %XMXLX2XwX8.&.$.{.[.'.{.` [ `.4 , XXeXyXvXW M YXYXYX",
|
||||
"YX % m W :XFXGX,X#.%.|.,X[.'.OX] [ -X6X2 , 8XeXX.h O YXYXYXYX",
|
||||
"YXYX i e T 9.PXqXUXwX3XjX4XoXoXmX+XXX8X`.~ ~ -Xj q YXYXYXYXYX",
|
||||
"YXYX t w !./.LXqXGXqX7XMX5X&X6XMXnXyXyX/ X.z l YXYXYXYXYXYX",
|
||||
"YXYXYX X N a aXsXKXbXqXqXlXKXHXGXCXMXvX;X! f S . YXYXYXYXYXYX",
|
||||
"YXYXYXYX @ m < pXAXGXKXLXLXLXKXHXwXQ j V s p . YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYX y b 6.I.DXLXLXLXVX} F B D u X YXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYX s b L Z VX| G B K L @ YXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYX A v c B D L @ YXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYX @ d p @ YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYX YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYX YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX"
|
||||
};
|
@ -0,0 +1,31 @@
|
||||
/* XPM */
|
||||
static char *korn-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 9 1",
|
||||
" c black",
|
||||
". c #585858",
|
||||
"X c #C00000",
|
||||
"o c red",
|
||||
"O c #808080",
|
||||
"+ c #A0A0A4",
|
||||
"@ c #C0C0C0",
|
||||
"# c gray100",
|
||||
"$ c None",
|
||||
/* pixels */
|
||||
"$$$ $$$$$$$$$$$",
|
||||
"$$ @@ $$$$$$$$$",
|
||||
"$ ###@@ $$$$$$$",
|
||||
"$ @####oo $$$$$",
|
||||
" @@@@##ooX@ $$$",
|
||||
" @@@@@@#@X#@. $",
|
||||
" @@@@@@@@X#O+.. ",
|
||||
" @@@@@@@+X#+@O# ",
|
||||
" @@@@@@@+X@@@O# ",
|
||||
" @@@@@@@X@O@# ",
|
||||
"$$ @@@@@X@O## ",
|
||||
"$$$$ @@@X@+#.. ",
|
||||
"$$$$$$ @+@O# $",
|
||||
"$$$$$$$$ @ $$$",
|
||||
"$$$$$$$$$$ $$$$$",
|
||||
"$$$$$$$$$$$$$$$$"
|
||||
};
|
@ -0,0 +1,119 @@
|
||||
/* XPM */
|
||||
static char *korn[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 81 1",
|
||||
" c #000000",
|
||||
". c #0C0C0C",
|
||||
"X c #131313",
|
||||
"o c #1A1A1A",
|
||||
"O c #242424",
|
||||
"+ c #2D2D2D",
|
||||
"@ c #333333",
|
||||
"# c #3B3B3B",
|
||||
"$ c #3D4040",
|
||||
"% c #7D1919",
|
||||
"& c #434444",
|
||||
"* c #4B4B4B",
|
||||
"= c #545454",
|
||||
"- c #555959",
|
||||
"; c #5B5B5B",
|
||||
": c #646464",
|
||||
"> c #6C6C6C",
|
||||
", c #737373",
|
||||
"< c #7B7B7C",
|
||||
"1 c #821919",
|
||||
"2 c #8B1D1D",
|
||||
"3 c #932222",
|
||||
"4 c #9C2525",
|
||||
"5 c #954646",
|
||||
"6 c #A54646",
|
||||
"7 c #B27272",
|
||||
"8 c #B67E7E",
|
||||
"9 c #C12A2A",
|
||||
"0 c #C93939",
|
||||
"q c #DF3535",
|
||||
"w c #DB3A3A",
|
||||
"e c #C95B5B",
|
||||
"r c #C77777",
|
||||
"t c #E44141",
|
||||
"y c #ED4D4D",
|
||||
"u c #EC5757",
|
||||
"i c #F05454",
|
||||
"p c #EF7F7F",
|
||||
"a c #F66363",
|
||||
"s c #F07676",
|
||||
"d c #828283",
|
||||
"f c #8B8B8B",
|
||||
"g c #8E8E90",
|
||||
"h c #908E8E",
|
||||
"j c #949394",
|
||||
"k c #979799",
|
||||
"l c #9A9A9B",
|
||||
"z c #9E9EA2",
|
||||
"x c #AF9393",
|
||||
"c c #AF9A9A",
|
||||
"v c #B29797",
|
||||
"b c #A2A2A5",
|
||||
"n c #A4A4A9",
|
||||
"m c #ABABAB",
|
||||
"M c #B3B3B3",
|
||||
"N c #B6BBBB",
|
||||
"B c #BEBEBE",
|
||||
"V c #BFC0C0",
|
||||
"C c #C2B7B7",
|
||||
"Z c #C3B9B9",
|
||||
"A c #CBBFBF",
|
||||
"S c #D2A8A8",
|
||||
"D c #DBA1A1",
|
||||
"F c #EF8383",
|
||||
"G c #C1C1C1",
|
||||
"H c #C8C6C6",
|
||||
"J c #CBCBCB",
|
||||
"K c #C7D2D2",
|
||||
"L c #D3D3D3",
|
||||
"P c #DDD4D4",
|
||||
"I c #DCDCDC",
|
||||
"U c #D6E3E3",
|
||||
"Y c #F3C6C6",
|
||||
"T c #F3CCCC",
|
||||
"R c #E4E4E4",
|
||||
"E c #EAE2E2",
|
||||
"W c #ECECEC",
|
||||
"Q c #ECF3F3",
|
||||
"! c #F4F4F4",
|
||||
"~ c #FBFBFB",
|
||||
"^ c None",
|
||||
/* pixels */
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^ ^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^ X+++. ^^^^^^^^^^^^^^^^^",
|
||||
"^^^^ o#<HGH;@@. ^^^^^^^^^^^^^^^",
|
||||
"^^^ Xj!IJGGHHV=$ ^^^^^^^^^^^^^",
|
||||
"^^ Xj~WIILKHVS8v;& ^^^^^^^^^^^^",
|
||||
"^ Xk~~!!WUILKF0e7x;& ^^^^^^^^^^",
|
||||
"^ +!!!~~~!WIUpau96HM:& ^^^^^^^^",
|
||||
" XfIIRW!~~!!Qsyyt4VGHm,# ^^^^^^",
|
||||
" oJLLIIR!!~~~TDuq4JHGGJmd@ ^^^^",
|
||||
" oGGHLLIIR!!~~!Yw4LLJHNj>&@.#^^^",
|
||||
" oGVGGHJLIIR!!REt4IIIM,,-**&O#^^",
|
||||
" oGVVGVGHJLIIRLPw3LWJ<djjd:-*o ^",
|
||||
" oGGVVVVGGHJLIJCw3GIm,zbnzc<:X&^",
|
||||
" oGGVVVVVVGGJJLCw2HLdzzbl,dGN=X ",
|
||||
" oVVVVVVGVBVVVHAw2Mb,nnnd:fIL:. ",
|
||||
" oGVVVVVVVVVVVHZw2mk<zznzjLI:*. ",
|
||||
" oNGVVVVVVVVVVVCw1j,zlgmK~~N&*. ",
|
||||
" X<lBGVVVBVVVVVCw1h>glkgV~W;#=. ",
|
||||
"^ o,kGHVVVVVVVCw%j>jfkK!~B*&=. ",
|
||||
"^^^ O>kGGVGVVVCw%h;hkbU~I,@&=. ",
|
||||
"^^^^^ +:lGHBVGZw5l:bznQ~B=#;;. ",
|
||||
"^^^^^^^ @;lHGBZrcm=7mVQW<*><& ",
|
||||
"^^^^^^^^^ @-bHGNMm**<BWB>>*#. ^",
|
||||
"^^^^^^^^^^^ @*bGVm&;;<bj*+X ^^",
|
||||
"^^^^^^^^^^^^^ @*mm*:<f;OX ^^^^",
|
||||
"^^^^^^^^^^^^^^ +#*>:OX ^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^ XoX ^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
|
||||
};
|
@ -0,0 +1,122 @@
|
||||
/* XPM */
|
||||
static char *kpalmdoc-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 100 2",
|
||||
" c black",
|
||||
". c #090909",
|
||||
"X c #343634",
|
||||
"o c gray26",
|
||||
"O c #494949",
|
||||
"+ c #4C4C4C",
|
||||
"@ c gray30",
|
||||
"# c #4E4E4E",
|
||||
"$ c #515151",
|
||||
"% c gray33",
|
||||
"& c gray35",
|
||||
"* c #526646",
|
||||
"= c #6A6A6A",
|
||||
"- c #6C6C6C",
|
||||
"; c #717171",
|
||||
": c #727272",
|
||||
"> c gray45",
|
||||
", c #767676",
|
||||
"< c #797979",
|
||||
"1 c gray48",
|
||||
"2 c #7E7E7E",
|
||||
"3 c gray50",
|
||||
"4 c #7AAA7A",
|
||||
"5 c #838383",
|
||||
"6 c #868688",
|
||||
"7 c #898989",
|
||||
"8 c gray54",
|
||||
"9 c #8B8B8B",
|
||||
"0 c gray57",
|
||||
"q c #929292",
|
||||
"w c #909790",
|
||||
"e c gray58",
|
||||
"r c #95959C",
|
||||
"t c #929F92",
|
||||
"y c #979997",
|
||||
"u c #979C97",
|
||||
"i c gray61",
|
||||
"p c #9D9D9D",
|
||||
"a c #9898A0",
|
||||
"s c #9C9CB6",
|
||||
"d c #82B282",
|
||||
"f c #8ABA86",
|
||||
"g c #96A796",
|
||||
"h c #9BBB9B",
|
||||
"j c gray65",
|
||||
"k c #A8A9A8",
|
||||
"l c #AAAAAA",
|
||||
"z c #A6B9A6",
|
||||
"x c #B0B0B3",
|
||||
"c c #B6B6B6",
|
||||
"v c #B0B0B8",
|
||||
"b c #B3B3BD",
|
||||
"n c #BBBBC0",
|
||||
"m c #B9B9C6",
|
||||
"M c #A7CAA6",
|
||||
"N c #B3DFB3",
|
||||
"B c #BEF2BE",
|
||||
"V c #C2C2CA",
|
||||
"C c #C4C4D2",
|
||||
"Z c #C6C6D5",
|
||||
"A c #D1D1D9",
|
||||
"S c #D0D0DF",
|
||||
"D c #D3D3E1",
|
||||
"F c #D6D6E1",
|
||||
"G c #D5D5E4",
|
||||
"H c #DADAE7",
|
||||
"J c #DEDEE6",
|
||||
"K c #C2F2C2",
|
||||
"L c #C6F6C6",
|
||||
"P c #CAFAC6",
|
||||
"I c #CEFECE",
|
||||
"U c #D0EFD0",
|
||||
"Y c #D1FED1",
|
||||
"T c #D6FED6",
|
||||
"R c #D9FED9",
|
||||
"E c #E0E0EC",
|
||||
"W c #E1E1ED",
|
||||
"Q c #E4E4EB",
|
||||
"! c #E5E5EF",
|
||||
"~ c #E7E7ED",
|
||||
"^ c #E9E9EF",
|
||||
"/ c #EAEAEF",
|
||||
"( c #E6E6F0",
|
||||
") c #E7E7F0",
|
||||
"_ c #E9E9F2",
|
||||
"` c #EAEAF3",
|
||||
"' c #EBEBF4",
|
||||
"] c #ECECF4",
|
||||
"[ c #EEEEF5",
|
||||
"{ c #EFEFF6",
|
||||
"} c #F1F1F8",
|
||||
"| c #F3F3F9",
|
||||
" . c #F7F7F9",
|
||||
".. c #F5F5FC",
|
||||
"X. c #F6F6FD",
|
||||
"o. c #F8F8FE",
|
||||
"O. c #F9F9FE",
|
||||
"+. c #FCFCFF",
|
||||
"@. c gray100",
|
||||
"#. c None",
|
||||
/* pixels */
|
||||
" $ $ $ $ $ $ * $ m C S s #.#.#.",
|
||||
"$ c k w w w w 4 w $ V J S s #.#.",
|
||||
"o 7 y U R T K f d < $ A D D s #.",
|
||||
"X # 5 z Y I S S S S S S s s s s ",
|
||||
" o 7 u P L S @.X.X.' ' S s Z s ",
|
||||
" # i M B S @.@.X.' ' S D s s ",
|
||||
"#. o ; g N D @.@.X.{ ' s s s s ",
|
||||
"#. # k h D @.3 3 3 3 H r ~ s ",
|
||||
"#. o 7 t S @.@.@.| ' G b F s ",
|
||||
" o # > 0 S @.3 2 3 2 3 r ^ s ",
|
||||
" o = = O - S @.X.[ ( ( J x .s ",
|
||||
"o = , 2 & + S @.3 3 3 3 3 v ~ s ",
|
||||
"o ; 3 7 < = D @.{ { ' ' ( 6 @.s ",
|
||||
" o 9 e i j S @.3 3 3 3 3 n ^ s ",
|
||||
" o % 3 0 D X.} { { ' ( ( J s ",
|
||||
"#. . o o s s s s s s s s s s "
|
||||
};
|
@ -0,0 +1,150 @@
|
||||
/* XPM */
|
||||
static char *kpalmdoc[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 112 2",
|
||||
" c black",
|
||||
". c #3F3F3F",
|
||||
"X c #424242",
|
||||
"o c #4C4C4C",
|
||||
"O c #535353",
|
||||
"+ c #595959",
|
||||
"@ c #526646",
|
||||
"# c gray40",
|
||||
"$ c #6B6B6B",
|
||||
"% c #737373",
|
||||
"& c #717C71",
|
||||
"* c #7A7A7A",
|
||||
"= c #6B9B6B",
|
||||
"- c #7E807E",
|
||||
"; c #739E73",
|
||||
": c #72A272",
|
||||
"> c #7AA67A",
|
||||
", c #7CAB7C",
|
||||
"< c #838383",
|
||||
"1 c #8B8B8B",
|
||||
"2 c #859385",
|
||||
"3 c #849D85",
|
||||
"4 c #8F978F",
|
||||
"5 c #8B9C8B",
|
||||
"6 c #929592",
|
||||
"7 c #949894",
|
||||
"8 c #9D9D9D",
|
||||
"9 c #8D9CB5",
|
||||
"0 c #84AE82",
|
||||
"q c #89A38A",
|
||||
"w c #8EAA8D",
|
||||
"e c #82B282",
|
||||
"r c #8AB686",
|
||||
"t c #8ABA86",
|
||||
"y c #8BBC8B",
|
||||
"u c #92B391",
|
||||
"i c #95BA96",
|
||||
"p c #9EACBE",
|
||||
"a c #A4A4A4",
|
||||
"s c #ABABAB",
|
||||
"d c #A4ADBE",
|
||||
"f c #B3B3B3",
|
||||
"g c #BBBBBB",
|
||||
"h c #A2AEC0",
|
||||
"j c #AAB4C4",
|
||||
"k c #AEB9CA",
|
||||
"l c #B2B9C4",
|
||||
"z c #B2BCCA",
|
||||
"x c #B9BFC9",
|
||||
"c c #92C28E",
|
||||
"v c #95C294",
|
||||
"b c #9AC69E",
|
||||
"n c #9ACA96",
|
||||
"m c #9CCC9C",
|
||||
"M c #A2D29E",
|
||||
"N c #A4D6A4",
|
||||
"B c #AAD7AA",
|
||||
"V c #AEDEAE",
|
||||
"C c #ACDCB0",
|
||||
"Z c #BCCABC",
|
||||
"A c #BCDFBC",
|
||||
"S c #AEE2AE",
|
||||
"D c #AEE2B2",
|
||||
"F c #B4E4B6",
|
||||
"G c #B4E4B8",
|
||||
"H c #BAEEBA",
|
||||
"J c #BEF1BD",
|
||||
"K c #B4C0CD",
|
||||
"L c #BAC0CA",
|
||||
"P c #B4C2D2",
|
||||
"I c #B5C3D9",
|
||||
"U c #BAC5D3",
|
||||
"Y c #B9C6DA",
|
||||
"T c #BDC8D5",
|
||||
"R c #BECADD",
|
||||
"E c #C0C0C0",
|
||||
"W c #C2C6CE",
|
||||
"Q c #C6C9CF",
|
||||
"! c #CDCECE",
|
||||
"~ c #C0C6D1",
|
||||
"^ c #C2C9D3",
|
||||
"/ c #C0CBDB",
|
||||
"( c #C6D3C6",
|
||||
") c #C2CDE0",
|
||||
"_ c #C5D0E1",
|
||||
"` c #CAD3E4",
|
||||
"' c #CED8EA",
|
||||
"] c #D3DCEA",
|
||||
"[ c #D8DFEC",
|
||||
"{ c #C1EBC1",
|
||||
"} c #C6F6C6",
|
||||
"| c #CAFAC6",
|
||||
" . c #CCFDCC",
|
||||
".. c #D8EBD8",
|
||||
"X. c #D2F5D2",
|
||||
"o. c #D6FED4",
|
||||
"O. c #D9F4D9",
|
||||
"+. c #DBFEDB",
|
||||
"@. c #D7E0EF",
|
||||
"#. c #DAE1EE",
|
||||
"$. c #DDE4F1",
|
||||
"%. c #E0E6F1",
|
||||
"&. c #E4E9F3",
|
||||
"*. c #E6EEFA",
|
||||
"=. c #E9EDF6",
|
||||
"-. c #EAEFF8",
|
||||
";. c #ECF1F9",
|
||||
":. c #F6F6F6",
|
||||
">. c #F1F5FB",
|
||||
",. c #F5F8FE",
|
||||
"<. c #FEFEFE",
|
||||
"1. c None",
|
||||
/* pixels */
|
||||
"1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.+ + + + + + + + + + + + + + + + 1.1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.+ ,.<.<.<.<.<.<.<.,.,.;.&.&.[ + + 1.1.1.1.1.1.",
|
||||
"1.1.1.1.1.1.1.1.1.+ ,.<.<.<.<.<.<.<.,.>.-.&.#.] + *.+ 1.1.1.1.1.",
|
||||
"1.X X X X X X X X @ X X <.! ! ! ! ! Q >.;.-.&.[ + *.$.+ 1.1.1.1.",
|
||||
"X f s 4 4 4 4 4 4 , 4 4 X <.<.<.<.<.,.,.>.-.&.#.+ ,.&.$.+ 1.1.1.",
|
||||
"X * 6 ( ..O.X.{ N e > * O :.<.<.<.<.<.,.>.;.&.#.+ <.,.&.$.+ 1.1.",
|
||||
"X f 6 Z +.+.o.| S t e ; a X ! ! ! ! ! Q W x =.%.+ =.=.%.] ] + 1.",
|
||||
"1.O < * +.o. .| V t y y * O <.<.<.<.<.,.>.>.=.&.+ + + + + + + + ",
|
||||
"1.X s 7 A . .H M y c v 0 s X ! ! ! ! Q W L =.=.&.#.[ _ Y Y z + ",
|
||||
"1.1.O 8 & | } F M y v n n * O :.<.<.<.<.,.>.;.=.&.[ ` / R R Y + ",
|
||||
"1.1.X < 7 J H G m i m M N v f X ! ! ! ! ,.,.>.=.%.] ` _ ) ) ) + ",
|
||||
"1.1.X a s i F F b e : = = ; * O <.<.<.<.,.,.;.&.[ ] ` ` ` ) _ + ",
|
||||
"1.1.1.O 1 $ C B y ; = = = , 0 f X ! ! Q ^ L l h d h p p h ` ' + ",
|
||||
"1.1.1.X 8 s q b v , , r c m M * O <.,.>.;.&.#.[ [ ] ] ' ' ' ' + ",
|
||||
"1.1.1.1.O 1 % 2 i i u w 5 2 < f Z X W x l d l d j j k j j ' ] + ",
|
||||
"1.1.1.X X 8 f % $ * * 1 7 s g ! s X =.&.&.&.%.%.%.#.[ [ [ ] [ + ",
|
||||
"1.X . # o % a f f f g g E g g s < X x x z z z z z k k z k [ @.+ ",
|
||||
"X # # * + o 7 s g g f f g g a * X o -.=.=.*.&.&.%.%.%.[ $.$.$.+ ",
|
||||
"# $ % * % + $ 1 8 f s 8 1 % o O $ 1 X W x x x z K K K P z $.@.+ ",
|
||||
"$ * - < 1 % o + % * O X X O # < 8 s s X -.-.*.&.%.&.$.#.$.$.$.+ ",
|
||||
"% * < 1 6 7 6 - o + - 1 . 8 X s f f g . U U U x U P P I I @.$.+ ",
|
||||
"X < 1 6 8 8 s f 8 8 a a 1 . 6 f g g . ;.-.-.=.=.&.&.%.$.$.$.$.+ ",
|
||||
"1.X 6 8 8 s f f a s s f f f g Z X X U U T T U U U I P I P #.$.+ ",
|
||||
"1.1.X X 8 s f s s f f g f X X X >.;.:.;.;.-.=.=.&.&.&.&.$.&.$.+ ",
|
||||
"1.1.1.1.X X X X X X X X X ^ ^ ^ Q T T Q T T U T T U U Y Y $.$.+ ",
|
||||
"1.1.1.1.1.1.1.1.1.+ ,.<.<.>.>.>.;.;.;.-.;.=.=.=.&.&.&.#.$.$.$.+ ",
|
||||
"1.1.1.1.1.1.1.1.1.+ ,.<.,.>.;.:.>.;.;.;.;.;.=.=.&.&.&.$.$.$.$.+ ",
|
||||
"1.1.1.1.1.1.1.1.1.+ ,.<.<.>.,.>.>.;.;.;.T T =.$.&.$.$.$.$.&.$.+ ",
|
||||
"1.1.1.1.1.1.1.1.1.+ ;.<.,.>.>.>.>.;.;.;.;.-.-.&.&.&.$.&.$.$.$.+ ",
|
||||
"1.1.1.1.1.1.1.1.1.+ + + + + + + + + + + + + + + + + + + + + + + "
|
||||
};
|
@ -0,0 +1,194 @@
|
||||
/* XPM */
|
||||
static char *kpilot-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 172 2",
|
||||
" c black",
|
||||
". c gray2",
|
||||
"X c #111111",
|
||||
"o c #131313",
|
||||
"O c gray12",
|
||||
"+ c gray14",
|
||||
"@ c #292629",
|
||||
"# c gray16",
|
||||
"$ c gray18",
|
||||
"% c gray21",
|
||||
"& c gray22",
|
||||
"* c #3A3A3A",
|
||||
"= c gray23",
|
||||
"- c #3A383C",
|
||||
"; c #3C393E",
|
||||
": c #3C3C3C",
|
||||
"> c #3F3F3F",
|
||||
", c #4F6736",
|
||||
"< c #526B37",
|
||||
"1 c #577139",
|
||||
"2 c #577238",
|
||||
"3 c #57703C",
|
||||
"4 c #57703D",
|
||||
"5 c #414141",
|
||||
"6 c #444244",
|
||||
"7 c #484648",
|
||||
"8 c #4C4B4E",
|
||||
"9 c #4D4B4F",
|
||||
"0 c #4E4E4E",
|
||||
"q c #4F4F51",
|
||||
"w c #515051",
|
||||
"e c #5B5B5B",
|
||||
"r c #5C7641",
|
||||
"t c #5D7742",
|
||||
"y c #617D47",
|
||||
"u c #62794B",
|
||||
"i c #637F48",
|
||||
"p c #657C4B",
|
||||
"a c #697D54",
|
||||
"s c gray38",
|
||||
"d c gray44",
|
||||
"f c #797979",
|
||||
"g c #7C7A7D",
|
||||
"h c #668445",
|
||||
"j c #65804C",
|
||||
"k c #65814D",
|
||||
"l c #69864B",
|
||||
"z c #6A8153",
|
||||
"x c #6B8751",
|
||||
"c c #6D8952",
|
||||
"v c #6E904A",
|
||||
"b c #728D56",
|
||||
"n c #758E5A",
|
||||
"m c #73964C",
|
||||
"M c #719053",
|
||||
"N c #749355",
|
||||
"B c #75935A",
|
||||
"V c #7A9F52",
|
||||
"C c #799B58",
|
||||
"Z c #7B9A5A",
|
||||
"A c #7EA057",
|
||||
"S c #7EA257",
|
||||
"D c #7EA258",
|
||||
"F c #7DA05C",
|
||||
"G c #817E82",
|
||||
"H c #869F6B",
|
||||
"J c #80A458",
|
||||
"K c #82A260",
|
||||
"L c #86A961",
|
||||
"P c #8AA46E",
|
||||
"I c #88AB69",
|
||||
"U c #8EAA6F",
|
||||
"Y c #8CB464",
|
||||
"T c #8CB16A",
|
||||
"R c #93A97A",
|
||||
"E c #91B06D",
|
||||
"W c #92B76D",
|
||||
"Q c #90B96B",
|
||||
"! c #91B670",
|
||||
"~ c #91B770",
|
||||
"^ c #95B375",
|
||||
"/ c #94BB70",
|
||||
"( c #9BB67C",
|
||||
") c #99BF75",
|
||||
"_ c #9CC479",
|
||||
"` c #808080",
|
||||
"' c #8A878C",
|
||||
"] c #918D92",
|
||||
"[ c gray57",
|
||||
"{ c #919092",
|
||||
"} c #959297",
|
||||
"| c #99969A",
|
||||
" . c #9A989C",
|
||||
".. c #9B999D",
|
||||
"X. c #9C9B9C",
|
||||
"o. c #9CB481",
|
||||
"O. c #A0BA83",
|
||||
"+. c #A5BE89",
|
||||
"@. c #A5BF8A",
|
||||
"#. c gray63",
|
||||
"$. c #A3A2A4",
|
||||
"%. c #A7A7A7",
|
||||
"&. c gray66",
|
||||
"*. c #A9A9A9",
|
||||
"=. c #A9A8AB",
|
||||
"-. c gray67",
|
||||
";. c gray68",
|
||||
":. c #ADACAE",
|
||||
">. c #B0AFB0",
|
||||
",. c #B3BCAB",
|
||||
"<. c #B3BDAC",
|
||||
"1. c #B4BDAD",
|
||||
"2. c #B4BEAD",
|
||||
"3. c #B1B1B1",
|
||||
"4. c #B1B0B2",
|
||||
"5. c #B2B2B2",
|
||||
"6. c #B3B3B2",
|
||||
"7. c gray70",
|
||||
"8. c #B3B1B4",
|
||||
"9. c gray72",
|
||||
"0. c #BBBBBB",
|
||||
"q. c #BCBBBD",
|
||||
"w. c #BCBBBE",
|
||||
"e. c gray74",
|
||||
"r. c #A2C980",
|
||||
"t. c #A2CA80",
|
||||
"y. c #A4CA83",
|
||||
"u. c #A6CD85",
|
||||
"i. c #A6CE85",
|
||||
"p. c #A8CF86",
|
||||
"a. c #A8CF87",
|
||||
"s. c #ACC393",
|
||||
"d. c #B7CAA0",
|
||||
"f. c #B9CBA4",
|
||||
"g. c #B9CBA5",
|
||||
"h. c #B9CCA4",
|
||||
"j. c #BACDA5",
|
||||
"k. c #BBCEA7",
|
||||
"l. c #B7C1B0",
|
||||
"z. c #B9C1B1",
|
||||
"x. c #BAC3B3",
|
||||
"c. c #BFCDB0",
|
||||
"v. c #BFCEB1",
|
||||
"b. c #C0C7B9",
|
||||
"n. c #C0CEB1",
|
||||
"m. c #C4CCBD",
|
||||
"M. c #C2D0B4",
|
||||
"N. c #C4D1B4",
|
||||
"B. c #C5D2B7",
|
||||
"V. c #CAD6BC",
|
||||
"C. c #C1C0C3",
|
||||
"Z. c #C3C3C4",
|
||||
"A. c #C3C6C1",
|
||||
"S. c #C8CFC1",
|
||||
"D. c #C9CFC2",
|
||||
"F. c #CECED0",
|
||||
"G. c #CBD2C3",
|
||||
"H. c #CBD3C3",
|
||||
"J. c #CDD4C5",
|
||||
"K. c #CED5C6",
|
||||
"L. c #CED6C6",
|
||||
"P. c #D2DDC5",
|
||||
"I. c #D2D0D3",
|
||||
"U. c #D5D7D4",
|
||||
"Y. c #D6D5D7",
|
||||
"T. c #D8DED1",
|
||||
"R. c #D8DED2",
|
||||
"E. c #DAE0D4",
|
||||
"W. c #DEE6D4",
|
||||
"Q. c #DFE5D9",
|
||||
"!. c #F0F2ED",
|
||||
"~. c None",
|
||||
/* pixels */
|
||||
"~.~.# Z.I.F.F.F.F.F.F.Y.` ~.~.",
|
||||
"~.~.e !.T.T.T.T.T.T.R.Q.U.X ~.~.",
|
||||
"~.~.g W.d.k.k.k.k.k.s.( D.@ ~.~.",
|
||||
"~.~.{ P.o.+.+.R ( U v V H.; ~.~.",
|
||||
"~.~...V.^ P H a b 2 2 J L.7 ~.~.",
|
||||
"~.~...N.E n z u , < m J L.9 ~.~.",
|
||||
"~.~.| N.Z p K t 3 3 h C L.q ~.~.",
|
||||
"~.~.} n.D l Z i N y r L G.w ~.~.",
|
||||
"~.~.] v.Y N j x c k F W G.8 ~.~.",
|
||||
"~.~.' v.W T T B I ! / ) m.6 ~.~.",
|
||||
"~.~.` M._ t.i.i.a.a.t.y.x.- ~.~.",
|
||||
"~.~.d A.2.2.x.2.z.z.<.z.7.$ ~.~.",
|
||||
"~.~.s >.6.q.$.q.8.=.C.;.X.+ ~.~.",
|
||||
"~.~.0 6.6.9.#.0.6.%.e.6.} o ~.~.",
|
||||
"~.~.% ;.=.%.-.%.=.-.%.-.f . ~.~.",
|
||||
"~.~. % 6 > : : : : = = O ~.~."
|
||||
};
|
@ -0,0 +1,177 @@
|
||||
/* XPM */
|
||||
static char *kpilot[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 139 2",
|
||||
" c #000000",
|
||||
". c #0B0B0B",
|
||||
"X c gray7",
|
||||
"o c #1A1A1A",
|
||||
"O c #222222",
|
||||
"+ c #2D2D2D",
|
||||
"@ c #343434",
|
||||
"# c #3B3B3B",
|
||||
"$ c #4D6434",
|
||||
"% c #506735",
|
||||
"& c #516936",
|
||||
"* c #546B3B",
|
||||
"= c #57703D",
|
||||
"- c #5A723F",
|
||||
"; c #444444",
|
||||
": c #4A4A4A",
|
||||
"> c #5C5C5C",
|
||||
", c #5B6E47",
|
||||
"< c #5C6D49",
|
||||
"1 c #5B7345",
|
||||
"2 c #5F7249",
|
||||
"3 c #5E7942",
|
||||
"4 c #617D45",
|
||||
"5 c #637C4B",
|
||||
"6 c #697E52",
|
||||
"7 c #656565",
|
||||
"8 c #6D6D6D",
|
||||
"9 c #727272",
|
||||
"0 c #797979",
|
||||
"q c #638044",
|
||||
"w c #65804B",
|
||||
"e c #68844A",
|
||||
"r c #698847",
|
||||
"t c #6C8C4A",
|
||||
"y c #668050",
|
||||
"u c #6A8352",
|
||||
"i c #6C8950",
|
||||
"p c #6F904B",
|
||||
"a c #71855B",
|
||||
"s c #708E53",
|
||||
"d c #75895F",
|
||||
"f c #71924D",
|
||||
"g c #769B4E",
|
||||
"h c #789D4F",
|
||||
"j c #729153",
|
||||
"k c #769559",
|
||||
"l c #779B50",
|
||||
"z c #78955B",
|
||||
"x c #799D50",
|
||||
"c c #79995C",
|
||||
"v c #7F9664",
|
||||
"b c #7DA254",
|
||||
"n c #7FA15A",
|
||||
"m c #839F65",
|
||||
"M c #849A6B",
|
||||
"N c #82A55C",
|
||||
"B c #83A85C",
|
||||
"V c #83A361",
|
||||
"C c #86A06A",
|
||||
"Z c #86AB60",
|
||||
"A c #8AA66C",
|
||||
"S c #88AD63",
|
||||
"D c #8BAC6B",
|
||||
"F c #8BB165",
|
||||
"G c #8EB36A",
|
||||
"H c #91AF6E",
|
||||
"J c #92AF70",
|
||||
"K c #90B36D",
|
||||
"L c #91B86D",
|
||||
"P c #94B174",
|
||||
"I c #95BC70",
|
||||
"U c #98B477",
|
||||
"Y c #99B47B",
|
||||
"T c #98BF75",
|
||||
"R c #9CB87D",
|
||||
"E c #96C070",
|
||||
"W c #98C074",
|
||||
"Q c #9DC47A",
|
||||
"! c #A0C87E",
|
||||
"~ c #858585",
|
||||
"^ c #8B8B8B",
|
||||
"/ c #919191",
|
||||
"( c #9B9B9B",
|
||||
") c #9DB881",
|
||||
"_ c #A4BD89",
|
||||
"` c #A8BF8E",
|
||||
"' c #A4A4A4",
|
||||
"] c #AAAAAA",
|
||||
"[ c #AEACB0",
|
||||
"{ c #B0ADB2",
|
||||
"} c #B3B2B3",
|
||||
"| c #B6B3B8",
|
||||
" . c #B8B6BA",
|
||||
".. c #BABABB",
|
||||
"X. c #BEBDC0",
|
||||
"o. c #A7C18C",
|
||||
"O. c #A3CC81",
|
||||
"+. c #A9C08F",
|
||||
"@. c #ABC191",
|
||||
"#. c #ADC993",
|
||||
"$. c #A6D084",
|
||||
"%. c #A8D286",
|
||||
"&. c #B3C79B",
|
||||
"*. c #B1CC96",
|
||||
"=. c #B5C99E",
|
||||
"-. c #B6D29D",
|
||||
";. c #B7CAA0",
|
||||
":. c #BAC5AC",
|
||||
">. c #B8CBA1",
|
||||
",. c #BBCBAD",
|
||||
"<. c #BEC9B0",
|
||||
"1. c #BED0AA",
|
||||
"2. c #C0CDB3",
|
||||
"3. c #C0D1AD",
|
||||
"4. c #C3D4B3",
|
||||
"5. c #C6D2BA",
|
||||
"6. c #C9D5BC",
|
||||
"7. c #CAD9BA",
|
||||
"8. c #C3C3C3",
|
||||
"9. c #C7C5C9",
|
||||
"0. c #C9C7CB",
|
||||
"q. c #CBCBCB",
|
||||
"w. c #CFCDD1",
|
||||
"e. c #C9D1C3",
|
||||
"r. c #CFDCC4",
|
||||
"t. c #D0CFD0",
|
||||
"y. c #D5DFC9",
|
||||
"u. c #D4D4D4",
|
||||
"i. c #D6D4D8",
|
||||
"p. c #DADADA",
|
||||
"a. c #DFDDE1",
|
||||
"s. c #E0DEE2",
|
||||
"d. c #E3E3E2",
|
||||
"f. c #E4E8E0",
|
||||
"g. c #ECECEC",
|
||||
"h. c #F0F0EF",
|
||||
"j. c #F2F2F2",
|
||||
"k. c #FBFBFB",
|
||||
"l. c None",
|
||||
/* pixels */
|
||||
"l.l.l.l.l. ( ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' 9 . l.l.l.l.l.l.",
|
||||
"l.l.l.l.l.> d.j.j.h.j.j.j.h.h.h.h.j.j.h.h.h.h.j.j.~ l.l.l.l.l.",
|
||||
"l.l.l.l. ( k.g.f.f.d.d.f.a.d.a.d.d.d.d.d.d.d.d.k.9.. l.l.l.l.l.",
|
||||
"l.l.l.l. | j.5.} 2.2.2.2.2.2.2.2.:.2.2.2.:.2.3.f.u.O l.l.l.l.l.",
|
||||
"l.l.l.l.o 8.j.7.4.4.4.4.4.7.4.4.3.4.4.7.4.7.>.` y.p.# l.l.l.l.l.",
|
||||
"l.l.l.l.O q.g.1.=.>.=.>.=.>.>.>.>.;.&.&.` J N g 6.a.: l.l.l.l.l.",
|
||||
"l.l.l.l.+ p.g.=.` ` ` ` +.+.` ` ` _ _ R B N g g 6.s.7 l.l.l.l.",
|
||||
"l.l.l.l.# p.d.@.R R R R _ R M d M R U r 4 p g g 6.s.8 l.l.l.l.",
|
||||
"l.l.l.l.; p.f.+.U Y Y Y R R a < d G p $ $ * g x 6.s.0 l.l.l.l.",
|
||||
"l.l.l.l.; p.p.+.J U A 6 M M 6 2 i p & $ $ p x h 6.s.~ l.l.l.l.",
|
||||
"l.l.l.l.: i.p.` H J M 5 < 5 6 < - & $ & r b l h 5.p.^ l.l.l.l.",
|
||||
"l.l.l.l.: p.p._ A H H 6 5 C 6 * % % $ - b b x h 5.p.^ l.l.l.l.",
|
||||
"l.l.l.l.; u.p._ V V d 4 m D 4 % * & * - f t l b 5.i.^ l.l.l.l.",
|
||||
"l.l.l.l.; t.p._ N 5 * 4 B N 4 * 4 4 & * 3 = f b 5.u./ l.l.l.l.",
|
||||
"l.l.l.l.; q.p._ N j e 1 N S 4 * t V q - = e n N 5.w.^ . l.l.l.l.",
|
||||
"l.l.l.l.; q.u._ N B B q s F 5 = i F s 3 * 3 B Z 5.q.^ . l.l.l.l.",
|
||||
"l.l.l.l.; q.t.o.n F n q 1 k i i k i 3 i i n D S <.w.^ . l.l.l.l.",
|
||||
"l.l.l.l.; 9.t.#.n L v , w y w u 5 u 5 1 n I G G e.0.~ . l.l.l.l.",
|
||||
"l.l.l.l.; X.w.#.E E G c G W c 1 c Q K v L I L L 7.8.0 l.l.l.l.",
|
||||
"l.l.l.l.# X.w.#.F E W Q Q Q D y D Q Q Q W W I E r...0 l.l.l.l.",
|
||||
"l.l.l.l.# X.9.#.L W W Q Q Q $.Q Q $.Q O.O.Q W W 6. .9 l.l.l.l.",
|
||||
"l.l.l.l.@ :.0.-.E W ! O.$.%.%.%.%.%.%.%.O.Q Q O.r.| 7 l.l.l.l.",
|
||||
"l.l.l.l.+ } X.e.,.,.,.,.<.<.<.<.<.<.<.,.,.,.,.<.q.] > l.l.l.l.",
|
||||
"l.l.l.l.O ] } | | [ | ..| | ..} . ...| .} | .} ' : l.l.l.l.",
|
||||
"l.l.l.l.o ' } ] / ] ' ' } ] ( ' ' } } } ' ] ( ( } ( ; l.l.l.l.",
|
||||
"l.l.l.l.o ( } ( ] h.a.] ] ~ 8.g.8.( ] ( 8.h.0.~ } / @ l.l.l.l.",
|
||||
"l.l.l.l.X / } ] ( 8.p.[ ] / | p.2.' ] ' 9.u.] ' ] ^ + l.l.l.l.l.",
|
||||
"l.l.l.l. ~ [ ] ] ' ' ] ] ] ' ' ' ] ] ] ' ' ' ] ] 0 o l.l.l.l.l.",
|
||||
"l.l.l.l. 0 ] ' ' ] ' ' ' ] ] ' ' ' ] ' ' ' ' ' ' 8 X l.l.l.l.l.",
|
||||
"l.l.l.l.l.> ] ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ~ > l.l.l.l.l.",
|
||||
"l.l.l.l.l.X 7 0 0 0 9 0 9 9 9 9 9 9 8 8 9 8 8 7 > O l.l.l.l.l.",
|
||||
"l.l.l.l.l.l. l.l.l.l.l.l."
|
||||
};
|
@ -0,0 +1,29 @@
|
||||
/* XPM */
|
||||
static char *ksync-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 7 1",
|
||||
" c black",
|
||||
". c blue",
|
||||
"X c #00C0C0",
|
||||
"o c #808080",
|
||||
"O c #C0C0C0",
|
||||
"+ c gray100",
|
||||
"@ c None",
|
||||
/* pixels */
|
||||
"@@@@@@ @@@@@@@@",
|
||||
"@@@@@@ O @@@@@@",
|
||||
"@@ @@ .. @@@@",
|
||||
"@@ O + .. @@",
|
||||
"@@ .. ++ Oo @",
|
||||
"@@ + .. ++ @",
|
||||
"@@ +++ Oo O++ @",
|
||||
" +++++ O++ @",
|
||||
" X ++++++ O++ @",
|
||||
" XX ++++ O++ @",
|
||||
" + O O+++ OO+ @",
|
||||
" O++ O+++ O @",
|
||||
" OO+ OO+ @@ @",
|
||||
"@@ O @ O @@@@@",
|
||||
"@@@@ @@@ @@@@@",
|
||||
"@@@@@@@@@@@@@@@@"
|
||||
};
|
@ -0,0 +1,47 @@
|
||||
/* XPM */
|
||||
static char *ksync[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 9 1",
|
||||
" c black",
|
||||
". c #0000C0",
|
||||
"X c blue",
|
||||
"o c #008080",
|
||||
"O c #00C0C0",
|
||||
"+ c #808080",
|
||||
"@ c #C0C0C0",
|
||||
"# c gray100",
|
||||
"$ c None",
|
||||
/* pixels */
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$ $$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$ @@ $$$$$$$$$$$$$",
|
||||
"$$$$$ $$$$$$ @@ .. $$$$$$$$$$$",
|
||||
"$$$$$ + $$$$ + XX.. $$$$$$$$$",
|
||||
"$$$$$ @@ $$ @ ..XX.. $$$$$$$",
|
||||
"$$$$$ @@ .. ##@ ..XX. $$$$$",
|
||||
"$$$$$ + XX.. @##@ ..X @+ $$$",
|
||||
"$$$$$ @ ..XX.. @##@ . @@ + $",
|
||||
"$$$$$ ##@ ..XX. @##@ +@ @@ $",
|
||||
"$$$$$ ####@ ..X @+ @##@ @@ $",
|
||||
"$$$$$ ######@ . @@ + ###@ + $",
|
||||
"$$$$$ ########@ +@ @@ @####@ $",
|
||||
"$ $$ ##########@ @@ @@####@ $",
|
||||
"$ o ############@ + @@####@ $",
|
||||
"$ Ooo @############@ @@####@ $",
|
||||
"$ oOOoo @###########@ @@####@ $",
|
||||
"$ ooOOoo @#########@ @@####@ $",
|
||||
"$ @ ooOO + ########@ @@####@ $",
|
||||
"$ ##@ oo @@ @#######@ @@####@ $",
|
||||
"$ ####@ @@ @@######@ @@####@ $",
|
||||
"$ ######@ + @@######@ @@@###@ $",
|
||||
"$ ########@ @@######@ @@@#@ $",
|
||||
"$ @@#######@ @@@#####@ $$ @@@ $",
|
||||
"$ @@@#####@ @@@###@ $$$$ @ $",
|
||||
"$$$ @@@###@ $$ @@@#@ $$$$$$ $",
|
||||
"$$$$$ @@@#@ $$$$ @@@ $$$$$$$$$",
|
||||
"$$$$$$$ @@@ $$$$$$ @ $$$$$$$$$",
|
||||
"$$$$$$$$$ @ $$$$$$$$ $$$$$$$$$",
|
||||
"$$$$$$$$$$$ $$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$"
|
||||
};
|
@ -0,0 +1,257 @@
|
||||
/* XPM */
|
||||
static char *kmail-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 235 2",
|
||||
" c #010101",
|
||||
". c #020202",
|
||||
"X c gray1",
|
||||
"o c #000004",
|
||||
"O c #000307",
|
||||
"+ c #020105",
|
||||
"@ c #040304",
|
||||
"# c #060505",
|
||||
"$ c #070504",
|
||||
"% c #020208",
|
||||
"& c #05080F",
|
||||
"* c #080A0D",
|
||||
"= c #080A0E",
|
||||
"- c #0A090C",
|
||||
"; c #0A090E",
|
||||
": c #0E0C0B",
|
||||
"> c #0F0C0B",
|
||||
", c #0E0C0C",
|
||||
"< c #0F0D0D",
|
||||
"1 c #070911",
|
||||
"2 c #060B11",
|
||||
"3 c #070C10",
|
||||
"4 c #070C12",
|
||||
"5 c #070D12",
|
||||
"6 c #0B0C10",
|
||||
"7 c #0B0D10",
|
||||
"8 c #0E0E11",
|
||||
"9 c #110F0D",
|
||||
"0 c #100F0F",
|
||||
"q c #110F0F",
|
||||
"w c #121010",
|
||||
"e c #131111",
|
||||
"r c #131112",
|
||||
"t c #131212",
|
||||
"y c #141110",
|
||||
"u c #151211",
|
||||
"i c #141212",
|
||||
"p c #171313",
|
||||
"a c #151014",
|
||||
"s c #161315",
|
||||
"d c #171415",
|
||||
"f c #11131D",
|
||||
"g c #15161D",
|
||||
"h c #191316",
|
||||
"j c #181415",
|
||||
"k c #1A1416",
|
||||
"l c #1D1A1A",
|
||||
"z c #1D1A1B",
|
||||
"x c #171920",
|
||||
"c c #181925",
|
||||
"v c #1B1C2E",
|
||||
"b c #1C1F28",
|
||||
"n c #1D1E2F",
|
||||
"m c #211D1C",
|
||||
"M c #241F20",
|
||||
"N c #353847",
|
||||
"B c #442519",
|
||||
"V c #482512",
|
||||
"C c #4F2917",
|
||||
"Z c #582208",
|
||||
"A c #582308",
|
||||
"S c #5A2608",
|
||||
"D c #592B16",
|
||||
"F c #603420",
|
||||
"G c #664427",
|
||||
"H c #66412C",
|
||||
"J c #68492D",
|
||||
"K c #6D5231",
|
||||
"L c #7B5937",
|
||||
"P c #464957",
|
||||
"I c #58504C",
|
||||
"U c #505267",
|
||||
"Y c #5B5D62",
|
||||
"T c #786042",
|
||||
"R c #626271",
|
||||
"E c #6E6D7E",
|
||||
"W c #707073",
|
||||
"Q c #7D7F87",
|
||||
"! c #84400A",
|
||||
"~ c #825213",
|
||||
"^ c #975E01",
|
||||
"/ c #814B2E",
|
||||
"( c #82562E",
|
||||
") c #85532B",
|
||||
"_ c #85612C",
|
||||
"` c #AA5201",
|
||||
"' c #AF6B00",
|
||||
"] c #AC6515",
|
||||
"[ c #BD6409",
|
||||
"{ c #C47400",
|
||||
"} c #C37517",
|
||||
"| c #D16413",
|
||||
" . c #DE6D1C",
|
||||
".. c #DA741C",
|
||||
"X. c #DF711C",
|
||||
"o. c #DF7E12",
|
||||
"O. c #C96427",
|
||||
"+. c #EF7B04",
|
||||
"@. c #E47316",
|
||||
"#. c #F67800",
|
||||
"$. c #F97B04",
|
||||
"%. c #BE8618",
|
||||
"&. c #968778",
|
||||
"*. c #C98106",
|
||||
"=. c #DD8116",
|
||||
"-. c #CC9732",
|
||||
";. c #D58F2D",
|
||||
":. c #D28C38",
|
||||
">. c #D58D3B",
|
||||
",. c #DE8B33",
|
||||
"<. c #E59A0D",
|
||||
"1. c #FF8500",
|
||||
"2. c #F88B00",
|
||||
"3. c #FF8E00",
|
||||
"4. c #FF9900",
|
||||
"5. c #FF9A00",
|
||||
"6. c #F49717",
|
||||
"7. c #F89413",
|
||||
"8. c #FF931F",
|
||||
"9. c #F68527",
|
||||
"0. c #F19322",
|
||||
"q. c #F19A2A",
|
||||
"w. c #FCA600",
|
||||
"e. c #F3A118",
|
||||
"r. c #FFB10A",
|
||||
"t. c #FFB50E",
|
||||
"y. c #E8A136",
|
||||
"u. c #F3AE2E",
|
||||
"i. c #FFB420",
|
||||
"p. c #FFB82A",
|
||||
"a. c #FFBC2C",
|
||||
"s. c #F9BD37",
|
||||
"d. c #CAA34A",
|
||||
"f. c #D4B678",
|
||||
"g. c #EEAB5D",
|
||||
"h. c #F6A742",
|
||||
"j. c #FFC530",
|
||||
"k. c #FFC33D",
|
||||
"l. c #FEC73E",
|
||||
"z. c #FFC140",
|
||||
"x. c #FEC741",
|
||||
"c. c #F9CE4C",
|
||||
"v. c #F3C25C",
|
||||
"b. c #FFD245",
|
||||
"n. c #FFD352",
|
||||
"m. c #F0CD67",
|
||||
"M. c #FBD770",
|
||||
"N. c #FFDA70",
|
||||
"B. c #FFE578",
|
||||
"V. c #9B8F83",
|
||||
"C. c #9A9AA0",
|
||||
"Z. c #9AA0AA",
|
||||
"A. c #B4A694",
|
||||
"S. c #A4A5A9",
|
||||
"D. c #AAABAA",
|
||||
"F. c #B7B7B7",
|
||||
"G. c #B3B4BA",
|
||||
"H. c #BBBAB8",
|
||||
"J. c gray73",
|
||||
"K. c gray",
|
||||
"L. c #BCBEC9",
|
||||
"P. c #DBB295",
|
||||
"I. c #CBBED6",
|
||||
"U. c #F0CE91",
|
||||
"Y. c #F9DB83",
|
||||
"T. c #E9CDA2",
|
||||
"R. c #EDCDAC",
|
||||
"E. c #EAD0B0",
|
||||
"W. c #FEE58E",
|
||||
"Q. c #FDF1B8",
|
||||
"!. c #C5C5C4",
|
||||
"~. c #C4C5CC",
|
||||
"^. c #CACAC9",
|
||||
"/. c #CACACA",
|
||||
"(. c #CBCBCB",
|
||||
"). c #CDCDCC",
|
||||
"_. c #CDC1D8",
|
||||
"`. c #CCCAD7",
|
||||
"'. c #D0C9C9",
|
||||
"]. c #D2D2D2",
|
||||
"[. c LightGray",
|
||||
"{. c #D4D4DA",
|
||||
"}. c #DADADA",
|
||||
"|. c #DDDDDC",
|
||||
" X c #DDDDDD",
|
||||
".X c #DFDFDE",
|
||||
"XX c #DAD2E1",
|
||||
"oX c #DBD3E1",
|
||||
"OX c #DDD5E4",
|
||||
"+X c #EFE7CC",
|
||||
"@X c #F7EDD2",
|
||||
"#X c gray88",
|
||||
"$X c #E1E2E1",
|
||||
"%X c #E3E2E4",
|
||||
"&X c #E4E4E4",
|
||||
"*X c #E6E6E6",
|
||||
"=X c #E7E7E8",
|
||||
"-X c #E6E8EA",
|
||||
";X c #E7E9ED",
|
||||
":X c #E8E8E7",
|
||||
">X c #ECE9E5",
|
||||
",X c #EAEAEA",
|
||||
"<X c #EBEAEA",
|
||||
"1X c gray92",
|
||||
"2X c #E9EBEF",
|
||||
"3X c #ECECEC",
|
||||
"4X c gray93",
|
||||
"5X c #EEECEF",
|
||||
"6X c #EFEFEF",
|
||||
"7X c #EDEFF3",
|
||||
"8X c #EFF5F6",
|
||||
"9X c #F0F0EF",
|
||||
"0X c gray94",
|
||||
"qX c #F1F1F1",
|
||||
"wX c #F0F0F2",
|
||||
"eX c #F1F1F3",
|
||||
"rX c #F2F1F3",
|
||||
"tX c gray95",
|
||||
"yX c #F3F2F2",
|
||||
"uX c #F3F3F3",
|
||||
"iX c #F3F6F7",
|
||||
"pX c gray96",
|
||||
"aX c #F6F5F6",
|
||||
"sX c #F8F8F9",
|
||||
"dX c #F8F9F8",
|
||||
"fX c #F9FBF9",
|
||||
"gX c gray98",
|
||||
"hX c #FBFBFB",
|
||||
"jX c #F8F9FC",
|
||||
"kX c #F8FFFF",
|
||||
"lX c #F9FEFF",
|
||||
"zX c #FDFFFF",
|
||||
"xX c #FEFFFF",
|
||||
"cX c gray100",
|
||||
"vX c None",
|
||||
/* pixels */
|
||||
"vXvXvXvXaXW I R.R.T.U.T vXvXvXvX",
|
||||
"vXvXvXOX%XrX'.P.@XQ.W.v.J 2 vXvX",
|
||||
"vXvXvXXX&XdXxXrX>X+XY.n.u.G & vX",
|
||||
"vXvXyXrX9XpXxXxXjX`.f.s.t.6.H 7 ",
|
||||
"vXvX4XaX6XaXsXrX3XA.d.m.x.a.>.a ",
|
||||
"vXiX*XrXrX,X1X8X{.( -.c.r.5...h ",
|
||||
"vX=X1XfX6X,X6X6XV.K ] e.2.$.O.h ",
|
||||
"8X=XrX4X}.|.4X~._ *.;.@.6.0.L 8 ",
|
||||
"Z.H.J.F.K.|.;X&.^ *.h.B.l.a.:.d ",
|
||||
"b D.%X^.[.=XL.) ' ` y.b.w.3.X.h ",
|
||||
"# Y .X^.[.$XE ! { } | 2.#.@./ t ",
|
||||
"vXg S.^.).G.n V [ <.h.9.8.q.K < ",
|
||||
"vXvXP F.!.R + + C =.N.B.j.i.,.s ",
|
||||
"vXvXf Q C.v $ @ . F g.k.5.1. .h ",
|
||||
"vXvXvXN U * : X . & B S A A D d ",
|
||||
"vXvXvXg c 9 : . vXvX& 5 5 5 = 0 "
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kmail[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #080707",
|
||||
". c #0C0A0B",
|
||||
"X c gray2",
|
||||
"o c #110F0F",
|
||||
"O c #131011",
|
||||
"+ c #181516",
|
||||
"@ c #1A1718",
|
||||
"# c #1C191A",
|
||||
"$ c #1B1828",
|
||||
"% c #181727",
|
||||
"& c #121A3D",
|
||||
"* c #211D1E",
|
||||
"= c #231F20",
|
||||
"- c #31241E",
|
||||
"; c #342926",
|
||||
": c #3C2B24",
|
||||
"> c #141F51",
|
||||
", c #20265F",
|
||||
"< c #203055",
|
||||
"1 c #323B4C",
|
||||
"2 c #333C57",
|
||||
"3 c #2A2C62",
|
||||
"4 c #222B66",
|
||||
"5 c #2C3860",
|
||||
"6 c #354877",
|
||||
"7 c #4A3630",
|
||||
"8 c #6C3100",
|
||||
"9 c #7B3E00",
|
||||
"0 c #443F75",
|
||||
"q c #7D400B",
|
||||
"w c #604C3E",
|
||||
"e c #56585C",
|
||||
"r c #444B65",
|
||||
"t c #5B5D74",
|
||||
"y c #6D484D",
|
||||
"u c #6E574A",
|
||||
"i c #705147",
|
||||
"p c #7E604A",
|
||||
"a c #7A6255",
|
||||
"s c gray39",
|
||||
"d c #79797A",
|
||||
"f c #404E83",
|
||||
"g c #485185",
|
||||
"h c #6C6D82",
|
||||
"j c #747181",
|
||||
"k c #76758B",
|
||||
"l c #787587",
|
||||
"z c #767881",
|
||||
"x c #903200",
|
||||
"c c #A73500",
|
||||
"v c #8E4601",
|
||||
"b c #9D450C",
|
||||
"n c #9F4C10",
|
||||
"m c #974A1A",
|
||||
"M c #8D4826",
|
||||
"N c #835E2A",
|
||||
"B c #994C27",
|
||||
"V c #9C6602",
|
||||
"C c #996B18",
|
||||
"Z c #A95601",
|
||||
"A c #A25113",
|
||||
"S c #B15900",
|
||||
"D c #BE5F00",
|
||||
"F c #B05502",
|
||||
"G c #A3532C",
|
||||
"H c #AC5731",
|
||||
"J c #A26600",
|
||||
"K c #A66800",
|
||||
"L c #A76F0A",
|
||||
"P c #AB6800",
|
||||
"I c #A16E11",
|
||||
"U c #AE7003",
|
||||
"Y c #B26B00",
|
||||
"T c #BB6D00",
|
||||
"R c #BA7400",
|
||||
"E c #AB7C38",
|
||||
"W c #90745D",
|
||||
"Q c #A36F57",
|
||||
"! c #BE7D59",
|
||||
"~ c #AF7962",
|
||||
"^ c #B07C62",
|
||||
"/ c #CF4F00",
|
||||
"( c #C56403",
|
||||
") c #C17100",
|
||||
"_ c #CF7100",
|
||||
"` c #CA7B01",
|
||||
"' c #C27903",
|
||||
"] c #D16E01",
|
||||
"[ c #DE7807",
|
||||
"{ c #DB7913",
|
||||
"} c #C66622",
|
||||
"| c #C0643D",
|
||||
" . c #DB743E",
|
||||
".. c #E56A00",
|
||||
"X. c #E96100",
|
||||
"o. c #EC6F00",
|
||||
"O. c #E37A00",
|
||||
"+. c #EA7400",
|
||||
"@. c #E87800",
|
||||
"#. c #E47719",
|
||||
"$. c #F46800",
|
||||
"%. c #FB6900",
|
||||
"&. c #F47300",
|
||||
"*. c #F37C00",
|
||||
"=. c #FF7600",
|
||||
"-. c #FD7B00",
|
||||
";. c #F9780F",
|
||||
":. c #E37621",
|
||||
">. c #E1773E",
|
||||
",. c #C56840",
|
||||
"<. c #C26F48",
|
||||
"1. c #C37556",
|
||||
"2. c #E17C42",
|
||||
"3. c #BC8011",
|
||||
"4. c #B58329",
|
||||
"5. c #BF9537",
|
||||
"6. c #B48A56",
|
||||
"7. c #AB927B",
|
||||
"8. c #BA8765",
|
||||
"9. c #CC890C",
|
||||
"0. c #C48511",
|
||||
"q. c #DC8F07",
|
||||
"w. c #DE9205",
|
||||
"e. c #C0953A",
|
||||
"r. c #D6952A",
|
||||
"t. c #D19839",
|
||||
"y. c #D9A638",
|
||||
"u. c #E58615",
|
||||
"i. c #F28800",
|
||||
"p. c #FD8400",
|
||||
"a. c #FE8E00",
|
||||
"s. c #FF8F0F",
|
||||
"d. c #FF840F",
|
||||
"f. c #FE8A10",
|
||||
"g. c #FD9300",
|
||||
"h. c #FC940E",
|
||||
"j. c #FD9B00",
|
||||
"k. c #F39200",
|
||||
"l. c #E08530",
|
||||
"z. c #E18838",
|
||||
"x. c #E0833C",
|
||||
"c. c #E39221",
|
||||
"v. c #E89B33",
|
||||
"b. c #F38823",
|
||||
"n. c #F2993F",
|
||||
"m. c #EBA118",
|
||||
"M. c #FEA300",
|
||||
"N. c #FEAA00",
|
||||
"B. c #FDAE0A",
|
||||
"V. c #FEA40E",
|
||||
"C. c #F2A519",
|
||||
"Z. c #FEB30A",
|
||||
"A. c #FDB211",
|
||||
"S. c #FEB815",
|
||||
"D. c #FFBD19",
|
||||
"F. c #E3A439",
|
||||
"G. c #F5AF22",
|
||||
"H. c #FBAD32",
|
||||
"J. c #FAB22D",
|
||||
"K. c #FDBB22",
|
||||
"L. c #FEB53B",
|
||||
"P. c #FEBC35",
|
||||
"I. c #FBBC3C",
|
||||
"U. c #F7B234",
|
||||
"Y. c #DE804A",
|
||||
"T. c #DD9552",
|
||||
"R. c #C08E6A",
|
||||
"E. c #D89761",
|
||||
"W. c #D1A748",
|
||||
"Q. c #E28042",
|
||||
"!. c #E48844",
|
||||
"~. c #E7A855",
|
||||
"^. c #EBB749",
|
||||
"/. c #F6AF40",
|
||||
"(. c #FDBD4A",
|
||||
"). c #F5B74A",
|
||||
"_. c #EAA546",
|
||||
"`. c #E5AE67",
|
||||
"'. c #E5B273",
|
||||
"]. c #EEB773",
|
||||
"[. c #D1AE6D",
|
||||
"{. c #FEC52E",
|
||||
"}. c #F7C338",
|
||||
"|. c #FEC53B",
|
||||
" X c #FDC93C",
|
||||
".X c #DBC37B",
|
||||
"XX c #FFC44F",
|
||||
"oX c #FECF41",
|
||||
"OX c #F9C64A",
|
||||
"+X c #FFCA54",
|
||||
"@X c #FDCC5B",
|
||||
"#X c #FFC554",
|
||||
"$X c #F9D15C",
|
||||
"%X c #E9C868",
|
||||
"&X c #E3CB78",
|
||||
"*X c #FEC965",
|
||||
"=X c #F4D069",
|
||||
"-X c #FED466",
|
||||
";X c #FED968",
|
||||
":X c #FCDA74",
|
||||
">X c #FDDC7C",
|
||||
",X c #FED277",
|
||||
"<X c #FFE17B",
|
||||
"1X c #878787",
|
||||
"2X c #948F98",
|
||||
"3X c #939393",
|
||||
"4X c #9C9C9C",
|
||||
"5X c #9A95A0",
|
||||
"6X c #9AA2B9",
|
||||
"7X c gray64",
|
||||
"8X c #AAAAAA",
|
||||
"9X c #ADA0BA",
|
||||
"0X c #B4B4B4",
|
||||
"qX c #BABABA",
|
||||
"wX c #D8A680",
|
||||
"eX c #CCBFD7",
|
||||
"rX c #DFC5BD",
|
||||
"tX c #F3D980",
|
||||
"yX c #EDDEAE",
|
||||
"uX c #FFE484",
|
||||
"iX c #FEE789",
|
||||
"pX c #FCE590",
|
||||
"aX c #FEE994",
|
||||
"sX c #FEEBA1",
|
||||
"dX c #F4E8B7",
|
||||
"fX c #FFF0A3",
|
||||
"gX c #FEF6BA",
|
||||
"hX c #C4C4C4",
|
||||
"jX c #CCCCCC",
|
||||
"kX c #D3CCD8",
|
||||
"lX c #D4D4D4",
|
||||
"zX c #D7D7D9",
|
||||
"xX c #DBDBDB",
|
||||
"cX c #DEDBE3",
|
||||
"vX c #DFD6E2",
|
||||
"bX c #E1CBC5",
|
||||
"nX c #E4D9D3",
|
||||
"mX c #E0DCE3",
|
||||
"MX c #F9EBC7",
|
||||
"NX c #F3EED5",
|
||||
"BX c #F7F2D7",
|
||||
"VX c #FDFDD4",
|
||||
"CX c #F9F0D8",
|
||||
"ZX c #E3E3E3",
|
||||
"AX c #E8E2E9",
|
||||
"SX c #EAEAEA",
|
||||
"DX c #E6E2E8",
|
||||
"FX c #EEEBF2",
|
||||
"GX c #ECF0F6",
|
||||
"HX c #F9F0E4",
|
||||
"JX c #FFFFEA",
|
||||
"KX c #F3F3F3",
|
||||
"LX c #F6FEFE",
|
||||
"PX c #FCFAF3",
|
||||
"IX c #FEFEFE",
|
||||
"UX c #F2F7FA",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXIXYXYXYXPXPXHXHXHXCXMXMXdX= = YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXIXFXAXKX= wXT.'.'.`.`.~.~.~.R.= = = YXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXAXjXmXzXZXbX2.PXIXJXVXgXfX<XF.8.= = = YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXIXxXlXIXPXmXcXrXdXBXVXgXsXtX>X$Xv.8.= = = YXYXYX",
|
||||
"YXYXYXYXYXYXYXeXkXSXxXIXIXIXPXZXlXnXNXdXpXtX;X+X Xc.~ = = = YXYX",
|
||||
"YXYXYXYXYXYXYXFXZXLXzXIXIXIXIXIXIXUXmXvXyX=X@XOX{.S.u.~ = = = YX",
|
||||
"YXYXYXYXYXYXIXmXIXPXzXIXIXIXIXIXIXIXIXjX9X%X).I.K.B.N.#.^ = = = ",
|
||||
"YXYXYXYXYXYXSXSXIXLXzXIXIXIXIXIXIXKXxXhX7..X^.G.B.M.j.g.#.~ = = ",
|
||||
"YXYXYXYXYXIXDXUXIXPXzXIXIXIXIXPXZXxXZX4X5.W..XtX:X-X@X#X(.E.= = ",
|
||||
"YXYXYXYXIXGXSXZXPXUXzXPXIXKXSXxXSXKXlXW 5.t.&X$X}.D.A.V.h.!.= = ",
|
||||
"YXYXYXYXIXmXKXZXIXLXnXUXZXZXSXKXKXSX3Xq 4.y.%X}.S.N.j.g.p.2.= = ",
|
||||
"YXYXYXLXmXSXDXFXIXUXcXSXGXKXKXSXKXqXa 8 v r.=XK.N.M.g.p.-.2.= = ",
|
||||
"YXYXYXUXzXSXmXIXPXUXnXPXKXSXSXSXZXl C N 9 Z ^.B.j.k.p.=.%.2.= = ",
|
||||
"YXYXLXcXZXLXUXPXPXUXzXSXSXSXAXSXqXu I 4.E Z _ @.@.@.o.#.!.1.= = ",
|
||||
"YXYXGXSXPXPXPXUXFXSXjXmXZXZXSXZXh C I 3.y.T._ O.i.g.j.#.6.= = = ",
|
||||
"YXLXzXlXZXZXzXjXjXhXqXZXZXZXAX0Xu V L 0.m.(.~._.L.L.L.H.v.[.= = ",
|
||||
"YX6X7X7X4X4X4X8X8X0XhXxXZXAXxXl V V U 9.C.J.iXiX;X+X|.P.H.~.= = ",
|
||||
"YX6 s qXlXjXlXjXqXlXzXxXZXZX0Xy V K U S C.I.>X XS.N.M.g.-.2.= = ",
|
||||
"YX= 1 3XzXxXxXzXqXxXZXxXZXxXk m J U R x ( I.<X{.Z.N.j.a.-.2.= = ",
|
||||
"YXYX+ e hXxXzXlXqXxXxXxXxX8Xr m P Y R A c { ).C.k.i.@.=.$.2.= = ",
|
||||
"YXYX= 2 3XxXzXlX0XlXxXxXjXk 7 b Y T ` r.} / ..+.&.&.o.x.! Q = = ",
|
||||
"YXYX= # e qXzXlX8XlXlXlX8X3 : M F ) _ w.).:.X.%.-.p.*.z.u = = = ",
|
||||
"YXYXYX= > 7.jXjX8XjXlXhXh $ O ; B D ` q.J.*Xb.;.d.f.f.h.l.w = = ",
|
||||
"YXYXYX= @ r 8XhX8XhXjX4X3 O o . - B ( q.U.*XsXpX>X;X@X+X(.].= = ",
|
||||
"YXYXYXYX= > d hX7XqXqXh O O o . 7 H @.(.,XaXoXD.B.M.g.p.Q.= = ",
|
||||
"YXYXYXYX= # 2 2X7XqX2X, O o . X : | u.>XpX{.A.N.j.a.p.Q.= = ",
|
||||
"YXYXYXYXYX$ & z 3X8Xt % o O o o * i | _.uXD.N.M.g.p.=.2.= = ",
|
||||
"YXYXYXYXYXYX# 4 1Xd 4 + + + + # YX= = = ; <.c c c c c c c 2.= = ",
|
||||
"YXYXYXYXYXYX= + r h $ # * = = = YXYX= = = = = = = = = = = = = = ",
|
||||
"YXYXYXYXYXYXYX= f g * = = = = YXYXYXYX= = = = = = = = = = = = = ",
|
||||
"YXYXYXYXYXYXYX= = = = = = = = YXYXYXYXYX= = = = = = = = = = = = "
|
||||
};
|
@ -0,0 +1,41 @@
|
||||
/usr/bin/tdeabc2mutt
|
||||
/usr/bin/kaddressbook
|
||||
/usr/lib/*/trinity/kcm_kabconfig.la
|
||||
/usr/lib/*/trinity/kcm_kabconfig.so
|
||||
/usr/lib/*/trinity/kcm_kabcustomfields.la
|
||||
/usr/lib/*/trinity/kcm_kabcustomfields.so
|
||||
/usr/lib/*/trinity/kcm_kabldapconfig.la
|
||||
/usr/lib/*/trinity/kcm_kabldapconfig.so
|
||||
/usr/lib/*/trinity/ldifvcardthumbnail.la
|
||||
/usr/lib/*/trinity/ldifvcardthumbnail.so
|
||||
/usr/lib/*/trinity/libkaddrbk_*.la
|
||||
/usr/lib/*/trinity/libkaddrbk_*.so
|
||||
/usr/lib/*/trinity/libkaddressbookpart.la
|
||||
/usr/lib/*/trinity/libkaddressbookpart.so
|
||||
/usr/lib/*/libkabinterfaces.so.1
|
||||
/usr/lib/*/libkabinterfaces.so.1.0.0
|
||||
/usr/lib/*/libkaddressbook.so.0
|
||||
/usr/lib/*/libkaddressbook.so.0.0.0
|
||||
/usr/share/applications/tde/kaddressbook.desktop
|
||||
/usr/share/apps/kaddressbook
|
||||
/usr/share/doc/tde/HTML/en/kaddressbook
|
||||
/usr/share/icons/hicolor/128x128/apps/kaddressbook.png
|
||||
/usr/share/icons/hicolor/16x16/apps/kaddressbook.png
|
||||
/usr/share/icons/hicolor/32x32/apps/kaddressbook.png
|
||||
/usr/share/icons/hicolor/48x48/apps/kaddressbook.png
|
||||
/usr/share/icons/hicolor/64x64/apps/kaddressbook.png
|
||||
/usr/share/services/kabconfig.desktop
|
||||
/usr/share/services/kabcustomfields.desktop
|
||||
/usr/share/services/kabldapconfig.desktop
|
||||
/usr/share/services/kaddressbook
|
||||
/usr/share/services/kontact/kaddressbookplugin.desktop
|
||||
/usr/share/services/tderesources/tdeabc/imap.desktop
|
||||
/usr/share/services/ldifvcardthumbnail.desktop
|
||||
/usr/share/servicetypes/dcopaddressbook.desktop
|
||||
/usr/share/servicetypes/kaddressbook_contacteditorwidget.desktop
|
||||
/usr/share/servicetypes/kaddressbookimprotocol.desktop
|
||||
/usr/share/servicetypes/kaddressbook_extension.desktop
|
||||
/usr/share/servicetypes/kaddressbook_view.desktop
|
||||
/usr/share/servicetypes/kaddressbook_xxport.desktop
|
||||
../icons/kaddressbook.xpm /usr/share/pixmaps
|
||||
../icons/kaddressbook-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kaddressbook /usr/share/doc/kaddressbook/html
|
@ -0,0 +1,2 @@
|
||||
debian/man/out/tdeabc2mutt-trinity.1
|
||||
debian/man/out/kaddressbook-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kaddressbook-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="KAddressbook"\
|
||||
icon32x32="/usr/share/pixmaps/kaddressbook.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kaddressbook-16.xpm"\
|
||||
command="/usr/bin/kaddressbook"
|
@ -0,0 +1,16 @@
|
||||
/usr/bin/kalarm
|
||||
/usr/bin/kalarmd
|
||||
/usr/share/applications/tde/kalarm.desktop
|
||||
/usr/share/applnk/.hidden/kalarmd.desktop
|
||||
/usr/share/applnk/Applications/kalarm.desktop
|
||||
/usr/share/apps/kalarm
|
||||
/usr/share/autostart/kalarm.tray.desktop
|
||||
/usr/share/autostart/kalarmd.autostart.desktop
|
||||
/usr/share/doc/tde/HTML/en/kalarm
|
||||
/usr/share/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
/usr/share/icons/hicolor/16x16/apps/kalarm.png
|
||||
/usr/share/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
/usr/share/icons/hicolor/32x32/apps/kalarm.png
|
||||
/usr/share/icons/hicolor/48x48/apps/kalarm.png
|
||||
../icons/kalarm.xpm /usr/share/pixmaps
|
||||
../icons/kalarm-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kalarm /usr/share/doc/kalarm/html
|
@ -0,0 +1,2 @@
|
||||
debian/man/out/kalarm-trinity.1
|
||||
debian/man/out/kalarmd-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kalarm-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="KAlarm"\
|
||||
icon32x32="/usr/share/pixmaps/kalarm.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kalarm-16.xpm"\
|
||||
command="/usr/bin/kalarm"
|
@ -0,0 +1,9 @@
|
||||
/usr/bin/kandy
|
||||
/usr/bin/kandy_client
|
||||
/usr/share/applications/tde/kandy.desktop
|
||||
/usr/share/applnk/Utilities/kandy.desktop
|
||||
/usr/share/apps/kandy
|
||||
/usr/share/config.kcfg/kandy.kcfg
|
||||
/usr/share/doc/tde/HTML/en/kandy
|
||||
../icons/kandy.xpm /usr/share/pixmaps
|
||||
../icons/kandy-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kandy /usr/share/doc/kandy/html
|
@ -0,0 +1,2 @@
|
||||
debian/man/out/kandy-trinity.1
|
||||
debian/man/out/kandy_client-trinity.1
|
@ -0,0 +1,6 @@
|
||||
?package(kandy-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Mobile Devices"\
|
||||
hints="TDE"\
|
||||
title="Kandy"\
|
||||
command="/usr/bin/kandy"
|
@ -0,0 +1,21 @@
|
||||
/usr/bin/karm
|
||||
/usr/lib/*/libkarm.so
|
||||
/usr/lib/*/libkarm.so.0
|
||||
/usr/lib/*/libkarm.so.0.0.0
|
||||
/usr/lib/*/trinity/libkarmpart.la
|
||||
/usr/lib/*/trinity/libkarmpart.so
|
||||
/usr/share/applications/tde/karm.desktop
|
||||
/usr/share/applnk/Utilities/karm.desktop
|
||||
/usr/share/apps/karm
|
||||
/usr/share/apps/karmpart
|
||||
/usr/share/doc/tde/HTML/en/karm
|
||||
/usr/share/icons/hicolor/128x128/apps/karm.png
|
||||
/usr/share/icons/hicolor/16x16/apps/karm.png
|
||||
/usr/share/icons/hicolor/22x22/apps/karm.png
|
||||
/usr/share/icons/hicolor/32x32/apps/karm.png
|
||||
/usr/share/icons/hicolor/48x48/apps/karm.png
|
||||
/usr/share/icons/hicolor/64x64/apps/karm.png
|
||||
/usr/share/services/karm_part.desktop
|
||||
/usr/share/services/kontact/karmplugin.desktop
|
||||
../icons/karm.xpm /usr/share/pixmaps
|
||||
../icons/karm-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/karm /usr/share/doc/karm/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/karm-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(karm-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Project Management"\
|
||||
hints="TDE"\
|
||||
title="KArm"\
|
||||
icon32x32="/usr/share/pixmaps/karm.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/karm-16.xpm"\
|
||||
command="/usr/bin/karm"
|
@ -0,0 +1,11 @@
|
||||
/usr/bin/kleopatra
|
||||
/usr/bin/kwatchgnupg
|
||||
/usr/lib/*/trinity/kcm_kleopatra.la
|
||||
/usr/lib/*/trinity/kcm_kleopatra.so
|
||||
/usr/share/applications/tde/kleopatra_import.desktop
|
||||
/usr/share/apps/kleopatra
|
||||
/usr/share/apps/kwatchgnupg
|
||||
/usr/share/doc/tde/HTML/en/kleopatra
|
||||
/usr/share/doc/tde/HTML/en/kwatchgnupg
|
||||
/usr/share/icons/hicolor/*/apps/kleopatra.png
|
||||
/usr/share/services/kleopatra_config_*.desktop
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kleopatra /usr/share/doc/kleopatra/html/kleopatra
|
@ -0,0 +1,2 @@
|
||||
debian/man/out/kleopatra-trinity.1
|
||||
debian/man/out/kwatchgnupg-trinity.1
|
@ -0,0 +1,13 @@
|
||||
?package(kleopatra-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="Kleopatra"\
|
||||
command="/usr/bin/kleopatra"
|
||||
|
||||
?package(kleopatra-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="KWatchGnuPG"\
|
||||
command="/usr/bin/kwatchgnupg"
|
@ -0,0 +1,67 @@
|
||||
/etc/trinity/kmail.antispamrc
|
||||
/etc/trinity/kmail.antivirusrc
|
||||
/usr/bin/kmail
|
||||
/usr/bin/kmail_*.sh
|
||||
/usr/lib/*/trinity/kcm_kmail.la
|
||||
/usr/lib/*/trinity/kcm_kmail.so
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_application_octetstream.la
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_application_octetstream.so
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_calendar.la
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_calendar.so
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_vcard.la
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_vcard.so
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_xdiff.la
|
||||
/usr/lib/*/trinity/libkmail_bodypartformatter_text_xdiff.so
|
||||
/usr/lib/*/trinity/libkmailpart.la
|
||||
/usr/lib/*/trinity/libkmailpart.so
|
||||
/usr/lib/*/libkmailprivate.la
|
||||
/usr/lib/*/libkmailprivate.so
|
||||
/usr/share/applications/tde/KMail.desktop
|
||||
/usr/share/applications/tde/kmail_view.desktop
|
||||
/usr/share/apps/tdeconf_update/kmail-3.1-update-new-mail-notification-settings.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.1-use-UOID-for-identities.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.1.4-dont-use-UOID-0-for-any-identity.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.2-misc.sh
|
||||
/usr/share/apps/tdeconf_update/kmail-3.2-update-loop-on-goto-unread-settings.sh
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3-aegypten.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3-misc.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3-move-identities.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3-split-sign-encr-keys.sh
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3-use-ID-for-accounts.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.3b1-misc.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.4-misc.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.4.1-update-status-filters.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.5-trigger-flag-migration.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-3.5-filter-icons.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-pgpidentity.pl
|
||||
/usr/share/apps/tdeconf_update/kmail-upd-identities.pl
|
||||
/usr/share/apps/tdeconf_update/kmail.upd
|
||||
/usr/share/apps/tdeconf_update/upgrade-signature.pl
|
||||
/usr/share/apps/tdeconf_update/upgrade-transport.pl
|
||||
/usr/share/apps/kmail
|
||||
/usr/share/config.kcfg/custommimeheader.kcfg
|
||||
/usr/share/config.kcfg/kmail.kcfg
|
||||
/usr/share/config.kcfg/customtemplates_kfg.kcfg
|
||||
/usr/share/config.kcfg/replyphrases.kcfg
|
||||
/usr/share/config.kcfg/templatesconfiguration_kfg.kcfg
|
||||
/usr/share/doc/tde/HTML/en/kmail
|
||||
/usr/share/icons/hicolor/128x128/apps/kmail.png
|
||||
/usr/share/icons/hicolor/16x16/apps/kmail.png
|
||||
/usr/share/icons/hicolor/22x22/apps/kmail.png
|
||||
/usr/share/icons/crystalsvg/22x22/apps/kmaillight.png
|
||||
/usr/share/icons/hicolor/32x32/apps/kmail.png
|
||||
/usr/share/icons/crystalsvg/32x32/apps/kmaillight.png
|
||||
/usr/share/icons/hicolor/48x48/apps/kmail.png
|
||||
/usr/share/icons/hicolor/64x64/apps/kmail.png
|
||||
/usr/share/icons/hicolor/scalable/apps/kmail.svgz
|
||||
/usr/share/services/kmail_config_*.desktop
|
||||
/usr/share/services/kontact/kmailplugin.desktop
|
||||
/usr/share/servicetypes/dcopimap.desktop
|
||||
/usr/share/servicetypes/dcopmail.desktop
|
||||
/usr/share/apps/konqueror/servicemenus/email.desktop
|
||||
../icons/kmail.xpm /usr/share/pixmaps
|
||||
../icons/kmail-16.xpm /usr/share/pixmaps
|
||||
../man/out/kmail_antivir.sh-trinity.1 /usr/share/man/man1
|
||||
../man/out/kmail_clamav.sh-trinity.1 /usr/share/man/man1
|
||||
../man/out/kmail_fprot.sh-trinity.1 /usr/share/man/man1
|
||||
../man/out/kmail_sav.sh-trinity.1 /usr/share/man/man1
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kmail /usr/share/doc/kmail/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/kmail-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kmail-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE,Mail"\
|
||||
title="KMail"\
|
||||
icon32x32="/usr/share/pixmaps/kmail.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kmail-16.xpm"\
|
||||
command="/usr/bin/kmail"
|
@ -0,0 +1,29 @@
|
||||
tdepim (4:3.5.5.dfsg.1-4) unstable; urgency=high
|
||||
|
||||
* KMail's handling of IMAP namespaces changed in KDE 3.5. You used to be
|
||||
able to set a prefix for your mailboxes (most commonly INBOX. for
|
||||
courier-imap and cyrus-imapd servers) that would tell KMail where to look
|
||||
for mail folders. In KDE 3.5, KMail now handles both personal and shared
|
||||
namespaces. It no longer strips the namespace from the beginning of the
|
||||
folder path, though, so some users will see that all of their folders are
|
||||
now subfolders of the inbox.
|
||||
|
||||
Due to this change, KMail may get confused when it starts after upgrading
|
||||
and crash. We don't have a solution to the bug at this time, but there is
|
||||
a workaround that doesn't result in any dataloss.
|
||||
|
||||
The folder $HOME/.trinity/share/apps/kmail/imap/ holds cached copies of all
|
||||
the mail headers in your imap account. Deleting everything in this folder
|
||||
(rm -rf ~/.trinity/share/apps/kmail/imap/*) allows KMail to startup. KMail
|
||||
will need to redownload all the mail headers, but it would need to do so
|
||||
anyway since it thinks the mail folders appearing under the inbox are
|
||||
different folders.
|
||||
|
||||
In some cases even this workaround has not been enough. If KMail still
|
||||
behaves strangely for you after doing this, you may need to move KMail's
|
||||
configuration file out of the way in addition to removing its IMAP cache.
|
||||
To do this, "mv ~/.trinity/share/config/kmailrc
|
||||
~/.trinity/share/config/kmailrc.bak". After doing this, KMail should behave
|
||||
better, but you will need to reconfigure all of your accounts.
|
||||
|
||||
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 16 Dec 2006 13:48:33 -0500
|
@ -0,0 +1,20 @@
|
||||
WARNING:
|
||||
|
||||
It is possible to lose your e-mail with a Disconnected IMAP account if you
|
||||
do not use it correctly. The purposes of Disconnected IMAP are to minimize
|
||||
bandwidth usage, to allow the user to decide when the client communicates
|
||||
with the server, and to keep a local copy of all e-mails.
|
||||
|
||||
When using Disconnected IMAP, all changes (such as writing new e-mails,
|
||||
deleting e-mails, and moving e-mails between folders or accounts) are only
|
||||
made on the client until the user synchronizes the client with the server
|
||||
by using the Check Mail command when there is a network connection available.
|
||||
|
||||
These are the commands that affect client-server syncronization:
|
||||
F5 synchronizes the current folder.
|
||||
Ctrl+L (Check Mail) synchronizes all folders in all accounts.
|
||||
Refresh Local IMAP Cache discards all local changes in the current folder.
|
||||
|
||||
If you make changes that affect more than one folder or account, you should
|
||||
usually use Ctrl+L to make sure all of your changes are committed to the
|
||||
mail server.
|
@ -0,0 +1,8 @@
|
||||
/usr/bin/kmailcvt
|
||||
/usr/share/applnk/Utilities/kmailcvt.desktop
|
||||
/usr/share/apps/kmailcvt
|
||||
/usr/share/icons/crystalsvg/16x16/apps/kmailcvt.png
|
||||
/usr/share/icons/crystalsvg/32x32/apps/kmailcvt.png
|
||||
/usr/share/icons/crystalsvg/48x48/apps/kmailcvt.png
|
||||
../icons/kmailcvt.xpm /usr/share/pixmaps
|
||||
../icons/kmailcvt-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kmailcvt-trinity.1
|
@ -0,0 +1,6 @@
|
||||
?package(kmailcvt-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE,Mail"\
|
||||
title="KMail/KAB Import Tool"\
|
||||
command="/usr/bin/kmailcvt"
|
@ -0,0 +1,27 @@
|
||||
/usr/bin/knode
|
||||
/usr/lib/*/trinity/kcm_knode.la
|
||||
/usr/lib/*/trinity/kcm_knode.so
|
||||
/usr/lib/*/trinity/libknodepart.la
|
||||
/usr/lib/*/trinity/libknodepart.so
|
||||
/usr/lib/*/libknodecommon.la
|
||||
/usr/lib/*/libknodecommon.so
|
||||
/usr/lib/*/libknodecommon.so.3
|
||||
/usr/lib/*/libknodecommon.so.3.0.0
|
||||
/usr/share/applications/tde/KNode.desktop
|
||||
/usr/share/apps/knode
|
||||
/usr/share/doc/tde/HTML/en/knode
|
||||
/usr/share/icons/hicolor/128x128/apps/knode.png
|
||||
/usr/share/icons/hicolor/128x128/apps/knode2.png
|
||||
/usr/share/icons/hicolor/16x16/apps/knode.png
|
||||
/usr/share/icons/hicolor/16x16/apps/knode2.png
|
||||
/usr/share/icons/hicolor/32x32/apps/knode.png
|
||||
/usr/share/icons/hicolor/32x32/apps/knode2.png
|
||||
/usr/share/icons/hicolor/48x48/apps/knode.png
|
||||
/usr/share/icons/hicolor/48x48/apps/knode2.png
|
||||
/usr/share/icons/hicolor/64x64/apps/knode.png
|
||||
/usr/share/icons/hicolor/64x64/apps/knode2.png
|
||||
/usr/share/services/knewsservice.protocol
|
||||
/usr/share/services/knode_config_*.desktop
|
||||
/usr/share/services/kontact/knodeplugin.desktop
|
||||
../icons/knode.xpm /usr/share/pixmaps
|
||||
../icons/knode-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/knode /usr/share/doc/knode/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/knode-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(knode-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE,News"\
|
||||
title="KNode"\
|
||||
icon32x32="/usr/share/pixmaps/knode.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/knode-16.xpm"\
|
||||
command="/usr/bin/knode"
|
@ -0,0 +1,24 @@
|
||||
/usr/bin/knotes
|
||||
/usr/lib/*/trinity/knotes_local.la
|
||||
/usr/lib/*/trinity/knotes_local.so
|
||||
/usr/lib/*/libknotes.so
|
||||
/usr/lib/*/libknotes.so.0
|
||||
/usr/lib/*/libknotes.so.0.0.0
|
||||
/usr/share/applications/tde/knotes.desktop
|
||||
/usr/share/apps/knotes
|
||||
/usr/share/config.kcfg/knoteconfig.kcfg
|
||||
/usr/share/config.kcfg/knotesglobalconfig.kcfg
|
||||
/usr/share/doc/tde/HTML/en/knotes
|
||||
/usr/share/icons/hicolor/128x128/apps/knotes.png
|
||||
/usr/share/icons/hicolor/16x16/apps/knotes.png
|
||||
/usr/share/icons/hicolor/22x22/apps/knotes.png
|
||||
/usr/share/icons/hicolor/32x32/apps/knotes.png
|
||||
/usr/share/icons/hicolor/48x48/apps/knotes.png
|
||||
/usr/share/icons/hicolor/64x64/apps/knotes.png
|
||||
/usr/share/services/tderesources/knotes/imap.desktop
|
||||
/usr/share/services/tderesources/knotes/local.desktop
|
||||
/usr/share/services/tderesources/knotes_manager.desktop
|
||||
../icons/knotes.xpm /usr/share/pixmaps
|
||||
../icons/knotes-16.xpm /usr/share/pixmaps
|
||||
|
||||
/usr/share/services/kontact/knotesplugin.desktop
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/knotes /usr/share/doc/knotes/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/knotes-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(knotes-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="KNotes"\
|
||||
icon32x32="/usr/share/pixmaps/knotes.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/knotes-16.xpm"\
|
||||
command="/usr/bin/knotes"
|
@ -0,0 +1,45 @@
|
||||
#! /bin/sh
|
||||
# preinst script for knotes
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||
BASEDIR=""
|
||||
fi
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <new-preinst> `install'
|
||||
# * <new-preinst> `install' <old-version>
|
||||
# * <new-preinst> `upgrade' <old-version>
|
||||
# * <old-preinst> `abort-upgrade' <new-version>
|
||||
#
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
|
||||
case "$1" in
|
||||
install|upgrade)
|
||||
if [ "$1" = "upgrade" ]
|
||||
then
|
||||
# Debian testing (Sarge) files
|
||||
rm ${BASEDIR}/etc/trinity/knotesrc > /dev/null 2>&1 || true
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade)
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "preinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
@ -0,0 +1,6 @@
|
||||
/usr/bin/kode
|
||||
/usr/bin/kxml_compiler
|
||||
/usr/lib/*/libkode.la
|
||||
/usr/lib/*/libkode.so
|
||||
/usr/lib/*/libkode.so.1
|
||||
/usr/lib/*/libkode.so.1.0.0
|
@ -0,0 +1,2 @@
|
||||
debian/man/out/kode-trinity.1
|
||||
debian/man/out/kxml_compiler-trinity.1
|
@ -0,0 +1,8 @@
|
||||
/usr/bin/konsolekalendar
|
||||
/usr/share/applications/tde/konsolekalendar.desktop
|
||||
/usr/share/doc/tde/HTML/en/konsolekalendar/common
|
||||
/usr/share/doc/tde/HTML/en/konsolekalendar/index.cache.bz2
|
||||
/usr/share/doc/tde/HTML/en/konsolekalendar/index.docbook
|
||||
/usr/share/icons/crystalsvg/16x16/apps/konsolekalendar.png
|
||||
/usr/share/icons/crystalsvg/22x22/apps/konsolekalendar.png
|
||||
/usr/share/icons/crystalsvg/32x32/apps/konsolekalendar.png
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/konsolekalendar /usr/share/doc/konsolekalendar/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/konsolekalendar-trinity.1
|
@ -0,0 +1,49 @@
|
||||
/usr/bin/kontact
|
||||
/usr/lib/*/trinity/kcm_kmailsummary.la
|
||||
/usr/lib/*/trinity/kcm_kmailsummary.so
|
||||
/usr/lib/*/trinity/kcm_kontact.la
|
||||
/usr/lib/*/trinity/kcm_kontact.so
|
||||
/usr/lib/*/trinity/kcm_kontactknt.la
|
||||
/usr/lib/*/trinity/kcm_kontactknt.so
|
||||
/usr/lib/*/trinity/kcm_kontactsummary.la
|
||||
/usr/lib/*/trinity/kcm_kontactsummary.so
|
||||
/usr/lib/*/trinity/kcm_korgsummary.la
|
||||
/usr/lib/*/trinity/kcm_korgsummary.so
|
||||
/usr/lib/*/trinity/kcm_sdsummary.la
|
||||
/usr/lib/*/trinity/kcm_sdsummary.so
|
||||
/usr/lib/*/trinity/libkontact_*.la
|
||||
/usr/lib/*/trinity/libkontact_*.so
|
||||
/usr/lib/*/libkontact.so.1
|
||||
/usr/lib/*/libkontact.so.1.0.0
|
||||
/usr/lib/*/libkpinterfaces.so.1
|
||||
/usr/lib/*/libkpinterfaces.so.1.0.0
|
||||
/usr/share/applications/tde/Kontact.desktop
|
||||
/usr/share/applications/tde/kontactdcop.desktop
|
||||
/usr/share/apps/kontact
|
||||
/usr/share/apps/kontactsummary/kontactsummary_part.rc
|
||||
/usr/share/config.kcfg/kontact.kcfg
|
||||
/usr/share/doc/tde/HTML/en/kontact
|
||||
/usr/share/icons/hicolor/128x128/apps/kontact.png
|
||||
/usr/share/icons/crystalsvg/16x16/actions/kontact_*.png
|
||||
/usr/share/icons/hicolor/16x16/apps/kontact.png
|
||||
/usr/share/icons/crystalsvg/22x22/actions/kontact_*.png
|
||||
/usr/share/icons/hicolor/22x22/apps/kontact.png
|
||||
/usr/share/icons/crystalsvg/32x32/actions/kontact_*.png
|
||||
/usr/share/icons/hicolor/32x32/apps/kontact.png
|
||||
/usr/share/icons/crystalsvg/48x48/actions/kontact_*.png
|
||||
/usr/share/icons/hicolor/48x48/apps/kontact.png
|
||||
/usr/share/icons/crystalsvg/64x64/actions/kontact_*.png
|
||||
/usr/share/icons/hicolor/64x64/apps/kontact.png
|
||||
/usr/share/services/kcmkmailsummary.desktop
|
||||
/usr/share/services/kcmkontactknt.desktop
|
||||
/usr/share/services/kcmkontactsummary.desktop
|
||||
/usr/share/services/kcmkorgsummary.desktop
|
||||
/usr/share/services/kcmsdsummary.desktop
|
||||
/usr/share/services/kontact/newstickerplugin.desktop
|
||||
/usr/share/services/kontact/specialdatesplugin.desktop
|
||||
/usr/share/services/kontact/summaryplugin.desktop
|
||||
/usr/share/services/kontact/weatherplugin.desktop
|
||||
/usr/share/services/kontactconfig.desktop
|
||||
/usr/share/servicetypes/kontactplugin.desktop
|
||||
../icons/kontact.xpm /usr/share/pixmaps
|
||||
../icons/kontact-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/kontact /usr/share/doc/kontact/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/kontact-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kontact-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="Kontact"\
|
||||
icon32x32="/usr/share/pixmaps/kontact.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kontact-16.xpm"\
|
||||
command="/usr/bin/kontact"
|
@ -0,0 +1,45 @@
|
||||
/usr/bin/ical2vcal
|
||||
/usr/bin/korgac
|
||||
/usr/bin/korganizer
|
||||
/usr/lib/*/trinity/kcm_korganizer.la
|
||||
/usr/lib/*/trinity/kcm_korganizer.so
|
||||
/usr/lib/*/trinity/libkorg_*.la
|
||||
/usr/lib/*/trinity/libkorg_*.so
|
||||
/usr/lib/*/trinity/libkorganizerpart.la
|
||||
/usr/lib/*/trinity/libkorganizerpart.so
|
||||
/usr/lib/*/libkocorehelper.so.1
|
||||
/usr/lib/*/libkocorehelper.so.1.0.0
|
||||
/usr/lib/*/libkorg_stdprinting.so.1
|
||||
/usr/lib/*/libkorg_stdprinting.so.1.0.0
|
||||
/usr/lib/*/libkorganizer.so.1
|
||||
/usr/lib/*/libkorganizer.so.1.0.0
|
||||
/usr/lib/*/libkorganizer_calendar.so.1
|
||||
/usr/lib/*/libkorganizer_calendar.so.1.0.0
|
||||
/usr/lib/*/libkorganizer_eventviewer.so.1
|
||||
/usr/lib/*/libkorganizer_eventviewer.so.1.0.0
|
||||
/usr/share/applications/tde/korganizer.desktop
|
||||
/usr/share/apps/tdeconf_update/korganizer.upd
|
||||
/usr/share/apps/korgac
|
||||
/usr/share/apps/korganizer
|
||||
/usr/share/autostart/korgac.desktop
|
||||
/usr/share/config.kcfg/korganizer.kcfg
|
||||
/usr/share/doc/tde/HTML/en/korganizer
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/webcal
|
||||
/usr/share/icons/hicolor/128x128/apps/korganizer.png
|
||||
/usr/share/icons/hicolor/16x16/apps/korganizer.png
|
||||
/usr/share/icons/hicolor/32x32/apps/korganizer.png
|
||||
/usr/share/icons/hicolor/48x48/apps/korganizer.png
|
||||
/usr/share/icons/hicolor/64x64/apps/korganizer.png
|
||||
/usr/share/services/kontact/korganizerplugin.desktop
|
||||
/usr/share/services/kontact/journalplugin.desktop
|
||||
/usr/share/services/kontact/todoplugin.desktop
|
||||
/usr/share/services/korganizer_*.desktop
|
||||
/usr/share/services/korganizer
|
||||
/usr/share/services/webcal.protocol
|
||||
/usr/share/servicetypes/calendardecoration.desktop
|
||||
/usr/share/servicetypes/calendarplugin.desktop
|
||||
/usr/share/servicetypes/dcopcalendar.desktop
|
||||
/usr/share/servicetypes/korganizerpart.desktop
|
||||
/usr/share/servicetypes/korgprintplugin.desktop
|
||||
../icons/korganizer.xpm /usr/share/pixmaps
|
||||
../icons/korganizer-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/korganizer /usr/share/doc/korganizer/html
|
@ -0,0 +1,3 @@
|
||||
debian/man/out/ical2vcal-trinity.1
|
||||
debian/man/out/korgac-trinity.1
|
||||
debian/man/out/korganizer-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(korganizer-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Data Management"\
|
||||
hints="TDE"\
|
||||
title="KOrganizer"\
|
||||
icon32x32="/usr/share/pixmaps/korganizer.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/korganizer-16.xpm"\
|
||||
command="/usr/bin/korganizer"
|
@ -0,0 +1,13 @@
|
||||
/usr/bin/korn
|
||||
/usr/lib/*/tdeconf_update_bin/korn-3-4-config_change
|
||||
/usr/share/applications/tde/KOrn.desktop
|
||||
/usr/share/apps/tdeconf_update/korn-3-4-config_change.upd
|
||||
/usr/share/apps/tdeconf_update/korn-3-5-metadata-update.pl
|
||||
/usr/share/apps/tdeconf_update/korn-3-5-ssl-update.pl
|
||||
/usr/share/apps/tdeconf_update/korn-3-5-update.upd
|
||||
/usr/share/doc/tde/HTML/en/korn
|
||||
/usr/share/icons/hicolor/16x16/apps/korn.png
|
||||
/usr/share/icons/hicolor/32x32/apps/korn.png
|
||||
/usr/share/icons/hicolor/48x48/apps/korn.png
|
||||
../icons/korn.xpm /usr/share/pixmaps
|
||||
../icons/korn-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/korn /usr/share/doc/korn/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/korn-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(korn-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Web News"\
|
||||
hints="TDE"\
|
||||
title="KOrn"\
|
||||
icon32x32="/usr/share/pixmaps/korn.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/korn-16.xpm"\
|
||||
command="/usr/bin/korn"
|
@ -0,0 +1,10 @@
|
||||
/usr/bin/ktnef
|
||||
/usr/share/applications/tde/ktnef.desktop
|
||||
/usr/share/apps/ktnef
|
||||
/usr/share/doc/tde/HTML/en/ktnef
|
||||
/usr/share/icons/hicolor/48x48/apps/ktnef.png
|
||||
/usr/share/icons/locolor/16x16/apps/ktnef.png
|
||||
/usr/share/icons/locolor/32x32/apps/ktnef.png
|
||||
/usr/share/mimelnk/application/ms-tnef.desktop
|
||||
../icons/ktnef.xpm /usr/share/pixmaps
|
||||
../icons/ktnef-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/ktnef /usr/share/doc/ktnef/html
|
@ -0,0 +1 @@
|
||||
debian/man/out/ktnef-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(ktnef-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Viewers"\
|
||||
hints="TDE"\
|
||||
title="KTnef"\
|
||||
icon32x32="/usr/share/pixmaps/ktnef.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/ktnef-16.xpm"\
|
||||
command="/usr/bin/ktnef"
|
@ -0,0 +1,2 @@
|
||||
application/vnd.ms-tnef; ktnef '%s'; test=test "$DISPLAY" != ""
|
||||
application/ms-tnef; ktnef '%s'; test=test "$DISPLAY" != ""
|
@ -0,0 +1,2 @@
|
||||
build-tree/tdepim-*/indexlib/README
|
||||
build-tree/tdepim-*/indexlib/docs/report.pdf
|
@ -0,0 +1,4 @@
|
||||
/usr/bin/indexlib-config
|
||||
/usr/include/index
|
||||
/usr/lib/*/libindex.la
|
||||
/usr/lib/*/libindex.so
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libindex.so.0
|
||||
/usr/lib/*/libindex.so.0.0.0
|
@ -0,0 +1,3 @@
|
||||
/usr/include/kgantt
|
||||
/usr/lib/*/libkgantt.la
|
||||
/usr/lib/*/libkgantt.so
|
@ -0,0 +1,3 @@
|
||||
/usr/lib/*/libkgantt.so.0
|
||||
/usr/lib/*/libkgantt.so.0.0.2
|
||||
/usr/share/apps/kgantt
|
@ -0,0 +1,11 @@
|
||||
/usr/include/gpgme++
|
||||
/usr/include/kleo
|
||||
/usr/include/qgpgme
|
||||
/usr/lib/*/libgpgme++.la
|
||||
/usr/lib/*/libgpgme++.so
|
||||
/usr/lib/*/libkleopatra.la
|
||||
/usr/lib/*/libkleopatra.so
|
||||
/usr/lib/*/libkpgp.la
|
||||
/usr/lib/*/libkpgp.so
|
||||
/usr/lib/*/libqgpgme.la
|
||||
/usr/lib/*/libqgpgme.so
|
@ -0,0 +1,18 @@
|
||||
/etc/trinity/libkleopatrarc
|
||||
/usr/lib/*/libgpgme++.so.0
|
||||
/usr/lib/*/libgpgme++.so.0.4.0
|
||||
/usr/lib/*/libkleopatra.so.1
|
||||
/usr/lib/*/libkleopatra.so.1.0.0
|
||||
/usr/lib/*/libkpgp.so.2
|
||||
/usr/lib/*/libkpgp.so.2.2.0
|
||||
/usr/lib/*/libqgpgme.so.0
|
||||
/usr/lib/*/libqgpgme.so.0.0.0
|
||||
/usr/share/apps/tdeconf_update/kpgp-3.1-upgrade-address-data.pl
|
||||
/usr/share/apps/tdeconf_update/kpgp.upd
|
||||
/usr/share/apps/libkleopatra
|
||||
/usr/share/icons/crystalsvg/*/apps/dirmngr.png
|
||||
/usr/share/icons/crystalsvg/*/apps/gpg.png
|
||||
/usr/share/icons/crystalsvg/*/apps/gpg_agent.png
|
||||
/usr/share/icons/crystalsvg/*/apps/gpgsm.png
|
||||
/usr/share/icons/crystalsvg/*/apps/pinentry.png
|
||||
/usr/share/icons/crystalsvg/*/apps/scdaemon.png
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libkmime.so.2
|
||||
/usr/lib/*/libkmime.so.2.2.0
|
@ -0,0 +1,4 @@
|
||||
/usr/include/tdepim/exchangeaccount.h
|
||||
/usr/include/tdepim/exchangeclient.h
|
||||
/usr/lib/*/libkpimexchange.la
|
||||
/usr/lib/*/libkpimexchange.so
|
@ -0,0 +1,4 @@
|
||||
/usr/lib/*/trinity/resourcecalendarexchange.la
|
||||
/usr/lib/*/trinity/resourcecalendarexchange.so
|
||||
/usr/lib/*/libkpimexchange.so.1
|
||||
/usr/lib/*/libkpimexchange.so.1.0.0
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libkpimidentities.so.1
|
||||
/usr/lib/*/libkpimidentities.so.1.0.0
|
@ -0,0 +1,3 @@
|
||||
/usr/include/ksieve
|
||||
/usr/lib/*/libksieve.la
|
||||
/usr/lib/*/libksieve.so
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libksieve.so.0
|
||||
/usr/lib/*/libksieve.so.0.0.0
|
@ -0,0 +1,3 @@
|
||||
/usr/include/ktnef
|
||||
/usr/lib/*/libktnef.la
|
||||
/usr/lib/*/libktnef.so
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libktnef.so.1
|
||||
/usr/lib/*/libktnef.so.1.0.0
|
@ -0,0 +1,3 @@
|
||||
/usr/include/mimelib
|
||||
/usr/lib/*/libmimelib.la
|
||||
/usr/lib/*/libmimelib.so
|
@ -0,0 +1,2 @@
|
||||
/usr/lib/*/libmimelib.so.1
|
||||
/usr/lib/*/libmimelib.so.1.0.1
|
@ -0,0 +1,11 @@
|
||||
/usr/include/libemailfunctions/idmapper.h
|
||||
/usr/include/libkcal
|
||||
/usr/include/tdepimmacros.h
|
||||
/usr/lib/*/libkcal.la
|
||||
/usr/lib/*/libkcal.so
|
||||
/usr/lib/*/libkcal_resourceremote.la
|
||||
/usr/lib/*/libkcal_resourceremote.so
|
||||
/usr/lib/*/libkholidays.la
|
||||
/usr/lib/*/libkholidays.so
|
||||
/usr/lib/*/libtdepim.la
|
||||
/usr/lib/*/libtdepim.so
|
@ -0,0 +1,33 @@
|
||||
/usr/lib/*/libkcal.so.2
|
||||
/usr/lib/*/libkcal.so.2.0.0
|
||||
/usr/lib/*/libkcal_resourceremote.so.1
|
||||
/usr/lib/*/libkcal_resourceremote.so.1.0.0
|
||||
/usr/lib/*/libkholidays.so.1
|
||||
/usr/lib/*/libkholidays.so.1.0.0
|
||||
/usr/lib/*/libtdepim.so.1
|
||||
/usr/lib/*/libtdepim.so.1.0.0
|
||||
/usr/lib/*/trinity/kcal_local.la
|
||||
/usr/lib/*/trinity/kcal_local.so
|
||||
/usr/lib/*/trinity/kcal_localdir.la
|
||||
/usr/lib/*/trinity/kcal_localdir.so
|
||||
/usr/lib/*/trinity/kcal_remote.la
|
||||
/usr/lib/*/trinity/kcal_remote.so
|
||||
/usr/lib/*/trinity/kcal_tdeabc.la
|
||||
/usr/lib/*/trinity/kcal_tdeabc.so
|
||||
/usr/lib/*/trinity/plugins/designer/tdepartsdesignerplugin.la
|
||||
/usr/lib/*/trinity/plugins/designer/tdepartsdesignerplugin.so
|
||||
/usr/lib/*/trinity/plugins/designer/tdepimwidgets.la
|
||||
/usr/lib/*/trinity/plugins/designer/tdepimwidgets.so
|
||||
/usr/share/apps/libkholidays
|
||||
/usr/share/apps/libtdepim
|
||||
/usr/share/apps/tdepim
|
||||
/usr/share/apps/tdepimwidgets
|
||||
/usr/share/config.kcfg/pimemoticons.kcfg
|
||||
/usr/share/icons/crystalsvg/22x22/actions/button_fewer.png
|
||||
/usr/share/icons/crystalsvg/22x22/actions/button_more.png
|
||||
/usr/share/services/tderesources/kcal/imap.desktop
|
||||
/usr/share/services/tderesources/kcal/local.desktop
|
||||
/usr/share/services/tderesources/kcal/localdir.desktop
|
||||
/usr/share/services/tderesources/kcal/remote.desktop
|
||||
/usr/share/services/tderesources/kcal/tdeabc.desktop
|
||||
/usr/share/services/tderesources/kcal_manager.desktop
|
@ -0,0 +1,22 @@
|
||||
.TH AKREGATOR 1
|
||||
.SH NAME
|
||||
akregator \- a TDE RSS Aggregator
|
||||
.SH SYNOPSIS
|
||||
.B akregator
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B Akregator
|
||||
is a TDE RSS aggregator with great look and feel.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -a, --addfeed \fI<url>\fB
|
||||
Add a feed with the given URL.
|
||||
.TP
|
||||
.B -g, --group \fI<groupname>\fB
|
||||
When adding feeds, place them in this group.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/akregator
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/akregator').
|
@ -0,0 +1,15 @@
|
||||
.TH EGROUPWAREWIZARD 1
|
||||
.SH NAME
|
||||
egroupwarewizard \- TDE eGroupware Wizard
|
||||
.SH SYNOPSIS
|
||||
.B egroupwarewizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B egroupwarewizard
|
||||
is a front end to configure eGroupware servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Verbose output.
|
||||
.so kdeopt.part
|
||||
|
@ -0,0 +1,15 @@
|
||||
.TH EXCHANGEWIZARD 1
|
||||
.SH NAME
|
||||
exchangewizard \- MS Exchange Setup Wizard
|
||||
.SH SYNOPSIS
|
||||
.B exchangewizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B exchangewizard
|
||||
is a front end to configure Microsoft Exchange servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Enable verbose output.
|
||||
.so kdeopt.part
|
||||
|
@ -0,0 +1,25 @@
|
||||
.TH GROUPWAREWIZARD 1
|
||||
.SH NAME
|
||||
groupwarewizard \- TDE Groupware Wizard
|
||||
.SH SYNOPSIS
|
||||
.B groupwarewizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B groupwarewizard
|
||||
is a front end to configure eGroupware, Kolab, and SUSE Linux Openexchange
|
||||
servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --serverType \fI<type>\fB
|
||||
The server type to configure.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.B egroupwarewizard
|
||||
(1),
|
||||
.B groupwisewizard
|
||||
(1),
|
||||
.B kolabwizard
|
||||
(1),
|
||||
.B sloxwizard
|
||||
(1).
|
||||
|
@ -0,0 +1,15 @@
|
||||
.TH GROUPWISEWIZARD 1
|
||||
.SH NAME
|
||||
groupwisewizard \- Novell GroupWise Setup Wizard
|
||||
.SH SYNOPSIS
|
||||
.B groupwisewizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B groupwisewizard
|
||||
is a front end to configure Novell GroupWise servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Enable verbose output.
|
||||
.so kdeopt.part
|
||||
|
@ -0,0 +1,20 @@
|
||||
.TH ICAL2VCAL 1
|
||||
.SH NAME
|
||||
ical2vcal \- Convert calendars from iCal to Versit vCal format
|
||||
.SH SUMMARY
|
||||
.B ical2vcal
|
||||
.I [infile] outfile
|
||||
.SH DESCRIPTION
|
||||
.B ical2vcal
|
||||
converts calendars from iCal to Versit vCal format, which is the standard
|
||||
format used internally by KOrganizer.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.B infile
|
||||
Specifies the name of the iCal calendar file to read in.
|
||||
The default is ~/.calendar.
|
||||
.TP
|
||||
.B outfile
|
||||
Specifies the name of the vCal calendar file to write.
|
||||
.SH SEE ALSO
|
||||
.BR korganizer (1).
|
@ -0,0 +1,41 @@
|
||||
.TH KADDRESSBOOK 1
|
||||
.SH NAME
|
||||
kaddressbook \- The TDE Address Book
|
||||
.SH SYNOPSIS
|
||||
.B kaddressbook
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
\fBKAddressBook\fP is the main address book application for TDE; it enables
|
||||
you to manage your contacts efficiently and comfortably. Since it is based
|
||||
on the tdeabc library it supports resources, which can be used to load and save
|
||||
your contacts to many different locations -- not just the local file system,
|
||||
but also to LDAP servers and SQL databases.
|
||||
|
||||
The user interface is similar to MS Outlook and it supports different views
|
||||
to represent the contact data differently; it also provides an incremental
|
||||
search over all fields and a jump button bar to quickly access single entries.
|
||||
Since the underlying tdeabc library uses the vCard format (specified in RFC 2426)
|
||||
as its default storage medium, KAddressBook mainly reflects the supported
|
||||
entry fields in its graphical user interface.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -a, --addr \fI<email>\fB
|
||||
Shows contact editor with given email address.
|
||||
.TP
|
||||
.B --uid \fI<uid>\fB
|
||||
Shows contact editor with given uid.
|
||||
.TP
|
||||
.B --editor-only
|
||||
Launches in editor only mode.
|
||||
.TP
|
||||
.B --new-contact
|
||||
Launches editor for the new contact.
|
||||
.TP
|
||||
.B --document \fI<file>\fB
|
||||
Work on given file.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kaddressbook
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kaddressbook').
|
@ -0,0 +1,132 @@
|
||||
.TH KALARM 1
|
||||
.SH NAME
|
||||
kalarm \- Personal alarm message, command and email scheduler for TDE
|
||||
.SH SYNOPSIS
|
||||
.B kalarm
|
||||
.I [Qt-options] [TDE-options] [options] [message]
|
||||
.SH DESCRIPTION
|
||||
\fBKAlarm\fP is a personal alarm message, command and email scheduler. It
|
||||
lets you set up personal alarm messages which pop up on the screen at the
|
||||
chosen time, or you can schedule commands to be executed or emails to be
|
||||
sent.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -a, --ack-confirm
|
||||
Prompt for confirmation when alarm is acknowledged.
|
||||
.TP
|
||||
.B -A, --attach \fI<url>\fB
|
||||
Attach file to email (repeat as needed).
|
||||
.TP
|
||||
.B --auto-close
|
||||
Auto-close alarm window after --late-cancel period.
|
||||
.TP
|
||||
.B --bcc
|
||||
Blind copy email to self.
|
||||
.TP
|
||||
.B -b, --beep
|
||||
Beep when message is displayed.
|
||||
.TP
|
||||
.B -c, --color \fI<color>\fB
|
||||
Message background color (name or hex 0xRRGGBB).
|
||||
.TP
|
||||
.B -C, --colorfg \fI<color>\fB
|
||||
Message foreground color (name or hex 0xRRGGBB).
|
||||
.TP
|
||||
.B --calendarURL \fI<url>\fB
|
||||
URL of calendar file.
|
||||
.TP
|
||||
.B --cancelEvent \fI<eventID>\fB
|
||||
Cancel alarm with the specified event ID.
|
||||
.TP
|
||||
.B -d, --disable
|
||||
Disable the alarm.
|
||||
.TP
|
||||
.B -e, --exec \fI<commandline>\fB
|
||||
Execute a shell command line.
|
||||
.TP
|
||||
.B --edit \fI<eventID>\fB
|
||||
Display the alarm edit dialog to edit the specified alarm.
|
||||
.TP
|
||||
.B -n, --edit-new
|
||||
Display the alarm edit dialog to edit a new alarm.
|
||||
.TP
|
||||
.B --edit-new-preset \fI<templateName>\fB
|
||||
Display the alarm edit dialog, preset with a template.
|
||||
.TP
|
||||
.B -f, --file \fI<url>\fB
|
||||
File to display.
|
||||
.TP
|
||||
.B -F, --from-id \fI<ID>\fB
|
||||
KMail identity to use as sender of email.
|
||||
.TP
|
||||
.B --handleEvent \fI<eventID>\fB
|
||||
Trigger or cancel alarm with the specified event ID.
|
||||
.TP
|
||||
.B -i, --interval \fI<period>\fB
|
||||
Interval between alarm repetitions.
|
||||
.TP
|
||||
.B -k, --korganizer
|
||||
Show alarm as an event in KOrganizer.
|
||||
.TP
|
||||
.B -l, --late-cancel \fI<period>\fB
|
||||
Cancel alarm if more than 'period' late when triggered.
|
||||
.TP
|
||||
.B -L, --login
|
||||
Repeat alarm at every login.
|
||||
.TP
|
||||
.B -m, --mail \fI<address>\fB
|
||||
Send an email to the given address (repeat as needed).
|
||||
.TP
|
||||
.B -p, --play \fI<url>\fB
|
||||
Audio file to play once.
|
||||
.TP
|
||||
.B -P, --play-repeat \fI<url>\fB
|
||||
Audio file to play repeatedly.
|
||||
.TP
|
||||
.B --recurrence \fI<spec>\fB
|
||||
Specify alarm recurrence using iCalendar syntax.
|
||||
.TP
|
||||
.B -R, --reminder \fI<period>\fB
|
||||
Display reminder in advance of alarm.
|
||||
.TP
|
||||
.B --reminder-once \fI<period>\fB
|
||||
Display reminder once, before first alarm recurrence.
|
||||
.TP
|
||||
.B -r, --repeat \fI<count>\fB
|
||||
Number of times to repeat alarm (including initial occasion).
|
||||
.TP
|
||||
.B --reset
|
||||
Reset the alarm scheduling daemon.
|
||||
.TP
|
||||
.B -s, --speak
|
||||
Speak the message when it is displayed.
|
||||
.TP
|
||||
.B --stop
|
||||
Stop the alarm scheduling daemon.
|
||||
.TP
|
||||
.B -S, --subject
|
||||
Email subject line.
|
||||
.TP
|
||||
.B -t, --time \fI<time>\fB
|
||||
Trigger alarm at time [[[yyyy-]mm-]dd-]hh:mm, or date yyyy-mm-dd.
|
||||
.TP
|
||||
.B --tray
|
||||
Display system tray icon.
|
||||
.TP
|
||||
.B --triggerEvent \fI<eventID>\fB
|
||||
Trigger alarm with the specified event ID.
|
||||
.TP
|
||||
.B -u, --until \fI<time>\fB
|
||||
Repeat until time [[[yyyy-]mm-]dd-]hh:mm, or date yyyy-mm-dd.
|
||||
.TP
|
||||
.B -V, --volume \fI<percent>\fB
|
||||
Volume to play audio file.
|
||||
.TP
|
||||
.B message
|
||||
Message text to display.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kalarm
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kalarm').
|
@ -0,0 +1,18 @@
|
||||
.TH KALARMD 1
|
||||
.SH NAME
|
||||
kalarmd \- TDE alarm daemon
|
||||
.SH SYNOPSIS
|
||||
.B kalarmd
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B kalarmd
|
||||
runs in the background and handles displaying the events scheduled by
|
||||
\fBkalarm\fP. You should normally not have to run this daemon manually.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --autostart
|
||||
Application is being auto-started at TDE session start.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.B kalarm
|
||||
(1).
|
@ -0,0 +1,35 @@
|
||||
.TH KANDY 1
|
||||
.SH NAME
|
||||
kandy \- Synchronize mobile phone address books
|
||||
.SH SYNOPSIS
|
||||
.B kandy
|
||||
.I [Qt-options] [TDE-options] [options] [profile]
|
||||
.SH DESCRIPTION
|
||||
At the moment
|
||||
.B kandy
|
||||
is more or less a terminal program with some special features to store
|
||||
commands and their parameters, but it also has a simple GUI to access the
|
||||
phone book of a mobile phone and it is able to save this phone book to the
|
||||
TDE address book.
|
||||
|
||||
.B kandy
|
||||
is aimed at mobile phones with integrate (GSM) modems.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --terminal
|
||||
Show terminal window.
|
||||
.TP
|
||||
.B --mobilegui
|
||||
Show mobile GUI.
|
||||
.TP
|
||||
.B --nogui
|
||||
Do not show GUI.
|
||||
.TP
|
||||
.B profile
|
||||
Filename of command profile file.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kandy
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kandy').
|
@ -0,0 +1,19 @@
|
||||
.TH KANDY_CLIENT 1
|
||||
.SH NAME
|
||||
kandy_client \- DCOP client for Kandy
|
||||
.SH SYNOPSIS
|
||||
.B kandy_client
|
||||
.I [Qt-options] [TDE-options] [URL]
|
||||
.SH DESCRIPTION
|
||||
.B kandy_client
|
||||
sends a URL to a running
|
||||
.B kandy
|
||||
instance.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B URL
|
||||
URL to send to \fBkandy\fP. Default is `\fIhttp://www.kde.org'\fP.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.B kandy
|
||||
(1).
|
@ -0,0 +1,23 @@
|
||||
.TH KARM 1
|
||||
.SH NAME
|
||||
lkarm \- TDE time tracker tool
|
||||
.SH SYNOPSIS
|
||||
.B karm
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KArm
|
||||
tracks time spent on various tasks. It is useful for tracking billable
|
||||
hours and can report the hours logged by task and day. This time history
|
||||
can be exported to a comma-delimited text file for import into other billing
|
||||
and/or project management tools.
|
||||
|
||||
.B KArm
|
||||
detects when your keyboard and mouse are idle and can associate different
|
||||
tasks with different desktops, two tools that can help keep the timer
|
||||
running on the correct task.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/karm
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/karm').
|
@ -0,0 +1,110 @@
|
||||
.\" This portion of the manual page is from kdeopt.man, from the
|
||||
.\" tdepim Debian package.
|
||||
.SH GENERIC OPTIONS
|
||||
.TP
|
||||
.B \-\-help
|
||||
Show help about options.
|
||||
.TP
|
||||
.B \-\-help-qt
|
||||
Show Qt specific options.
|
||||
.TP
|
||||
.B \-\-help-tde
|
||||
Show TDE specific options.
|
||||
.TP
|
||||
.B \-\-help-all
|
||||
Show all options.
|
||||
.TP
|
||||
.B \-\-author
|
||||
Show author information.
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Show version information.
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information.
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options.
|
||||
.SH QT OPTIONS
|
||||
.TP
|
||||
.B \-\-display \fI<displayname>\fB
|
||||
Use the X-server display `displayname'.
|
||||
.TP
|
||||
.B \-\-session \fI<sessionId>\fB
|
||||
Restore the application for the given `sessionId'.
|
||||
.TP
|
||||
.B \-\-cmap
|
||||
Causes the application to install a private color map on an 8\-bit
|
||||
display.
|
||||
.TP
|
||||
.B \-\-ncols \fI<count>\fB
|
||||
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||
display, if the application is using the QApplication::ManyColor color
|
||||
specification.
|
||||
.TP
|
||||
.B \-\-nograb
|
||||
Tells Qt to never grab the mouse or the keyboard.
|
||||
.TP
|
||||
.B \-\-dograb
|
||||
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||
to override.
|
||||
.TP
|
||||
.B \-\-sync
|
||||
Switches to synchronous mode for debugging.
|
||||
.TP
|
||||
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||
Defines the application font.
|
||||
.TP
|
||||
.B \-\-bg, \-\-background \fI<color>\fB
|
||||
Sets the default background color and an application palette (light
|
||||
and dark shades are calculated).
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||
Sets the default foreground color.
|
||||
.TP
|
||||
.B \-\-btn, \-\-button \fI<color>\fB
|
||||
Sets the default button color.
|
||||
.TP
|
||||
.B \-\-name \fI<name>\fB
|
||||
Sets the application name.
|
||||
.TP
|
||||
.B \-\-title \fI<title>\fB
|
||||
Sets the application title (caption).
|
||||
.TP
|
||||
.B \-\-visual TrueColor
|
||||
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||
.TP
|
||||
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||
Sets XIM (X Input Method) input style. Possible values are
|
||||
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||
.TP
|
||||
.B \-\-im \fI<XIM server>\fB
|
||||
Set XIM server.
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
Disable XIM.
|
||||
.SH TDE OPTIONS
|
||||
.TP
|
||||
.B \-\-caption \fI<caption>\fB
|
||||
Use `caption' as name in the titlebar.
|
||||
.TP
|
||||
.B \-\-icon \fI<icon>\fB
|
||||
Use `icon' as the application icon.
|
||||
.TP
|
||||
.B \-\-miniicon \fI<icon>\fB
|
||||
Use `icon' as the icon in the titlebar.
|
||||
.TP
|
||||
.B \-\-dcopserver \fI<server>\fB
|
||||
Use the DCOP Server specified by `server'.
|
||||
.TP
|
||||
.B \-\-nocrashhandler
|
||||
Disable crash handler, to get core dumps.
|
||||
.TP
|
||||
.B \-\-waitforwm
|
||||
Waits for a WM_NET compatible windowmanager.
|
||||
.TP
|
||||
.B \-\-style \fI<style>\fB
|
||||
Sets the application GUI style.
|
||||
.TP
|
||||
.B \-\-geometry \fI<geometry>\fB
|
||||
Sets the client geometry of the main widget.
|
@ -0,0 +1,29 @@
|
||||
.TH KLEOPATRA 1
|
||||
.SH NAME
|
||||
kleopatra \- TDE X.509 key manager
|
||||
.SH SYNOPSIS
|
||||
.B kleopatra
|
||||
.I [Qt-options] [TDE-options] [options] [address|URL]
|
||||
.SH DESCRIPTION
|
||||
.B Kleopatra
|
||||
is the TDE tool for managing X.509 certificates in the GpgSM keybox and for
|
||||
retrieving certificates from LDAP servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --external
|
||||
Search for external certificates initially.
|
||||
.TP
|
||||
.B --query
|
||||
Initial query string.
|
||||
.TP
|
||||
.B --import-certificate
|
||||
Name of certificate file to import.
|
||||
.TP
|
||||
.B URL
|
||||
Attach the file that `URL' points to.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kleopatra
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kleopatra').
|
@ -0,0 +1,54 @@
|
||||
.TH KMAIL 1
|
||||
.SH NAME
|
||||
kmail \- TDE email client
|
||||
.SH SYNOPSIS
|
||||
.B kmail
|
||||
.I [Qt-options] [TDE-options] [options] [address|URL]
|
||||
.SH DESCRIPTION
|
||||
.B KMail
|
||||
is a fully-featured email client that fits nicely into the Trinity desktop.
|
||||
It has features such as support for IMAP, POP3, multiple accounts,
|
||||
mail filtering and sorting, PGP/GnuPG privacy, and inline attachments.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -s, --subject \fI<subject>\fB
|
||||
Set subject of message.
|
||||
.TP
|
||||
.B -c, --cc \fI<address>\fB
|
||||
Send CC: to `address'.
|
||||
.TP
|
||||
.B -b, --bcc \fI<address>\fB
|
||||
Send BCC: to `address'.
|
||||
.TP
|
||||
.B -h, --header \fI<header>\fB
|
||||
Add `header' to message.
|
||||
.TP
|
||||
.B --msg \fI<file>\fB
|
||||
Read message body from `file'.
|
||||
.TP
|
||||
.B --body \fI<text>\fB
|
||||
Set body of message.
|
||||
.TP
|
||||
.B --attach \fI<url>\fB
|
||||
Add an attachment to the mail. This can be repeated.
|
||||
.TP
|
||||
.B --check
|
||||
Only check for new mail.
|
||||
.TP
|
||||
.B --composer
|
||||
Only open composer window.
|
||||
.TP
|
||||
.B --view \fI<url>\fB
|
||||
View the given message file.
|
||||
.TP
|
||||
.B address
|
||||
Send message to `address'.
|
||||
.TP
|
||||
.B URL
|
||||
Attach the file that `URL' points to.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kmail
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kmail').
|
@ -0,0 +1,8 @@
|
||||
.TH KMAIL_ANTIVIR.SH 1
|
||||
.SH NAME
|
||||
kmail_antivir.sh \- H+BEDV AntiVir backend for KMail
|
||||
.SH DESCRIPTION
|
||||
This shell script is used internally by \fBkmail\fP. Users should not run it
|
||||
directly.
|
||||
.SH SEE ALSO
|
||||
.BR kmail (1).
|
@ -0,0 +1,8 @@
|
||||
.TH KMAIL_CLAMAV.SH 1
|
||||
.SH NAME
|
||||
kmail_clamav.sh \- Clam Anti-Virus backend for KMail
|
||||
.SH DESCRIPTION
|
||||
This shell script is used internally by \fBkmail\fP. Users should not run it
|
||||
directly.
|
||||
.SH SEE ALSO
|
||||
.BR kmail (1).
|
@ -0,0 +1,8 @@
|
||||
.TH KMAIL_FPROT.SH 1
|
||||
.SH NAME
|
||||
kmail_fprot.sh \- F-Prot Anti-Virus backend for KMail
|
||||
.SH DESCRIPTION
|
||||
This shell script is used internally by \fBkmail\fP. Users should not run it
|
||||
directly.
|
||||
.SH SEE ALSO
|
||||
.BR kmail (1).
|
@ -0,0 +1,8 @@
|
||||
.TH KMAIL_SAV.SH 1
|
||||
.SH NAME
|
||||
kmail_sav.sh \- Sophos Anti-Virus backend for KMail
|
||||
.SH DESCRIPTION
|
||||
This shell script is used internally by \fBkmail\fP. Users should not run it
|
||||
directly.
|
||||
.SH SEE ALSO
|
||||
.BR kmail (1).
|
@ -0,0 +1,15 @@
|
||||
.TH KMAILCVT 1
|
||||
.SH NAME
|
||||
kmailcvt \- KMail import filters
|
||||
.SH SYNOPSIS
|
||||
.B kmailcvt
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B kmailcvt
|
||||
provides a frontend to import mail folders into \fBkmail\fP. Supported
|
||||
formats include Outlook Express, mbox files, plain text, Pegasus-Mail,
|
||||
and Evolution.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.B kmail
|
||||
(1).
|
@ -0,0 +1,21 @@
|
||||
.TH KNODE 1
|
||||
.SH NAME
|
||||
knode \- TDE news reader
|
||||
.SH SYNOPSIS
|
||||
.B knode
|
||||
.I [Qt-options] [TDE-options] [url]
|
||||
.SH DESCRIPTION
|
||||
.B KNode
|
||||
is an easy-to-use, convenient newsreader; it is intended to allow even
|
||||
newbies to use a newsreader under TDE, but it also offers advanced features
|
||||
appealing to experienced users.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B url
|
||||
A `news://server/group' URL.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/knode
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/knode').
|
@ -0,0 +1,23 @@
|
||||
.TH KNOTES 1
|
||||
.SH NAME
|
||||
knotes \- Sticky notes application for TDE
|
||||
.SH SYNOPSIS
|
||||
.B knotes
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KNotes
|
||||
is a program that lets you write the computer equivalent of sticky notes.
|
||||
The notes are saved automatically when you exit the program, and they
|
||||
display when you open the program. You may print and mail your notes if
|
||||
you configure
|
||||
.B KNotes
|
||||
to use helper applications.
|
||||
|
||||
Display features of notes such as color and font may be customized for each
|
||||
note. You may also customize the defaults.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/knotes
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/knotes').
|
@ -0,0 +1,62 @@
|
||||
.TH KODE 1
|
||||
.SH NAME
|
||||
kode \- TDE code generator
|
||||
.SH SYNOPSIS
|
||||
.B kode
|
||||
.I [Qt-options] [TDE-options] [options] [filename]
|
||||
.SH DESCRIPTION
|
||||
.B Kode
|
||||
generates various types of C++ template files.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -c, --create-class
|
||||
Create a class.
|
||||
.TP
|
||||
.B -d, --create-dialog
|
||||
Create a dialog.
|
||||
.TP
|
||||
.B --create-tdeioslave
|
||||
Create a tdeioslave.
|
||||
.TP
|
||||
.B -y, --codify
|
||||
Create generator code for the given source.
|
||||
.TP
|
||||
.B --add-property
|
||||
Add a property to the class.
|
||||
.TP
|
||||
.B --inplace
|
||||
Change the output file in place.
|
||||
.TP
|
||||
.B --author-email \fI<name>\fB
|
||||
Add an author with the given email address.
|
||||
.TP
|
||||
.B --project \fI<name>\fB
|
||||
Give the project name.
|
||||
.TP
|
||||
.B --gpl
|
||||
Use the GPL as the license.
|
||||
.TP
|
||||
.B --lgpl
|
||||
Use the LGPL as the license.
|
||||
.TP
|
||||
.B --classname \fI<name>\fB
|
||||
Specifies the name of the class.
|
||||
.TP
|
||||
.B --namespace \fI<name>\fB
|
||||
Specifies the namespace in which to place the class.
|
||||
.TP
|
||||
.B --warning
|
||||
Enable warnings about code generation.
|
||||
.TP
|
||||
.B --qt-exception
|
||||
Add a QT exception to the GPL.
|
||||
.TP
|
||||
.B --singleton
|
||||
Create a singleton class.
|
||||
.TP
|
||||
.B --protocol
|
||||
Specifies the tdeioslave protocol name.
|
||||
.TP
|
||||
.B filename
|
||||
Specifies the source code file name for output.
|
||||
.so kdeopt.part
|
@ -0,0 +1,15 @@
|
||||
.TH KOLABWIZARD 1
|
||||
.SH NAME
|
||||
kolabwizard \- TDE Kolab Wizard
|
||||
.SH SYNOPSIS
|
||||
.B kolabwizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B kolabwizard
|
||||
is a front end to configure Kolab servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Verbose output.
|
||||
.so kdeopt.part
|
||||
|
@ -0,0 +1,112 @@
|
||||
.TH KONSOLEKALENDAR 1
|
||||
.SH NAME
|
||||
konsolekalendar \- Command line interface to TDE calendars
|
||||
.SH SYNOPSIS
|
||||
.B konsolekalendar
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B KonsoleKalendar
|
||||
is a command line interface to TDE calendars. It lets you view, insert,
|
||||
remove, or modify calendar events by way of the command line or from a
|
||||
scripting language. Additionally,
|
||||
.B KonsoleKalendar
|
||||
can create a new TDE calendar, export a TDE calendar to a variety of other
|
||||
formats, and import another TDE calendar.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Print helpful runtime messages.
|
||||
.TP
|
||||
.B --dry-run
|
||||
Print what would have been done, but do not execute
|
||||
.TP
|
||||
.B --file \fI<calendar-file>\fB
|
||||
Specify which calendar you want to use.
|
||||
.LP
|
||||
|
||||
Major operation modes:
|
||||
.TP
|
||||
.B --view
|
||||
Print calendar events in specified export format.
|
||||
.TP
|
||||
.B --add
|
||||
Insert an event into the calendar.
|
||||
.TP
|
||||
.B --change
|
||||
Modify an existing calendar event.
|
||||
.TP
|
||||
.B --delete
|
||||
Remove an existing calendar event.
|
||||
.TP
|
||||
.B --create
|
||||
Create new calendar file if one does not exist.
|
||||
.TP
|
||||
.B --import \fI<import-file>\fB
|
||||
Import this calendar to main calendar.
|
||||
.LP
|
||||
|
||||
Operation modifiers:
|
||||
.TP
|
||||
.B --all
|
||||
View all calendar entries
|
||||
.TP
|
||||
.B --next
|
||||
View next activity in calendar.
|
||||
.TP
|
||||
.B --show-next \fI<days>\fB
|
||||
From start date show next # days' activities.
|
||||
.TP
|
||||
.B --uid \fI<uid>\fB
|
||||
Event Unique-string identifier.
|
||||
.TP
|
||||
.B --date \fI<start-date>\fB
|
||||
Start from this day [YYYY-MM-DD].
|
||||
.TP
|
||||
.B --time \fI<start-time>\fB
|
||||
Start from this time [HH:MM:SS].
|
||||
.TP
|
||||
.B --end-date \fI<end-date>\fB
|
||||
End at this day [YYYY-MM-DD].
|
||||
.TP
|
||||
.B --end-time \fI<end-time>\fB
|
||||
End at this time [HH:MM:SS].
|
||||
.TP
|
||||
.B --epoch-start \fI<epoch-time>\fB
|
||||
Start from this time [secs since epoch].
|
||||
.TP
|
||||
.B --epoch-end \fI<epoch-time>\fB
|
||||
End at this time [secs since epoch].
|
||||
.TP
|
||||
.B --summary \fI<summary>\fB
|
||||
Add summary to event (for add/change modes).
|
||||
.TP
|
||||
.B --description \fI<description>\fB
|
||||
Add description to event (for add/change modes).
|
||||
.TP
|
||||
.B --location \fI<location>\fB
|
||||
Add location to event (for add/change modes).
|
||||
.LP
|
||||
|
||||
Export options:
|
||||
.TP
|
||||
.B --export-type \fI<export-type>\fB
|
||||
Export file type (Default: text).
|
||||
.TP
|
||||
.B --export-file \fI<export-file>\fB
|
||||
Export to file (Default: stdout).
|
||||
.TP
|
||||
.B --export-list
|
||||
Print list of export types supported and exit.
|
||||
.so kdeopt.part
|
||||
.SH EXAMPLES
|
||||
konsolekalendar --view
|
||||
|
||||
konsolekalendar --add --date 2003-06-04 --time 10:00 --end-time 12:00
|
||||
--summary "Doctor Visit" --description "Get My Head Examined"
|
||||
|
||||
konsolekalendar --delete --uid KOrganizer-1740326.803
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/konsolekalendar
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/konsolekalendar').
|
@ -0,0 +1,32 @@
|
||||
.TH KONTACT 1
|
||||
.SH NAME
|
||||
kontact \- Integrated TDE personal information management application
|
||||
.SH SYNOPSIS
|
||||
.B kontact
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B Kontact
|
||||
is the integrated solution for personal information management. It combines
|
||||
the well-known TDE applications for email, scheduling, address book, notes
|
||||
and newsgroups (KMail, KOrganizer, KAddressBook, KNotes and KNode) into a
|
||||
single interface. Being based on a true component framework Kontact provides
|
||||
exactly the same functionality as the stand-alone applications, and adds
|
||||
more features, by making use of the integrated way Kontact runs the
|
||||
applications as components. Users still retain the choice of which
|
||||
applications are run within Kontact and which are run stand-alone.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --module \fI<module>\fB
|
||||
Start with a specific Kontact module.
|
||||
.TP
|
||||
.B --nosplash
|
||||
Disable the splash screen.
|
||||
.TP
|
||||
.B --list
|
||||
List all possible modules and exit.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kontact
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kontact').
|
@ -0,0 +1,15 @@
|
||||
.TH KORGAC 1
|
||||
.SH NAME
|
||||
korgac \- KOrganizer alarm daemon
|
||||
.SH SYNOPSIS
|
||||
.B korgac
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B korgac
|
||||
runs in the background and handles displaying alarms from the KOrganizer
|
||||
calendar. It is normally started at login and displays an icon in the
|
||||
Kicker system tray, but if you have disabled this
|
||||
feature you may need to start korgac manually.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.BR korganizer (1).
|
@ -0,0 +1,26 @@
|
||||
.TH KORGANIZER 1
|
||||
.SH NAME
|
||||
korganizer \- Personal organizer for TDE
|
||||
.SH SYNOPSIS
|
||||
.B korganizer
|
||||
.I [Qt-options] [TDE-options] [options] [calendar]
|
||||
.SH DESCRIPTION
|
||||
.B KOrganizer
|
||||
is a calendar application for TDE. You can schedule appointments, events,
|
||||
and to-do tasks. KOrganizer will remind you about pending tasks, and help
|
||||
you keep your schedule. It supports event categories, highlighting
|
||||
according to category, numerous options for generating repeated events,
|
||||
emerging group scheduling support, PalmPilot synchronization, and much more.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -i, --import \fI<url>\fB
|
||||
Import calendar at `url' into default calendar.
|
||||
.TP
|
||||
.B calendar
|
||||
A calendar file to load.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/korganizer
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/korganizer').
|
@ -0,0 +1,21 @@
|
||||
.TH KORN 1
|
||||
.SH NAME
|
||||
korn \- Sticky notes application for TDE
|
||||
.SH SYNOPSIS
|
||||
.B korn
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KOrn
|
||||
is a TDE mail checker that has the capability to dock itself to Kicker.
|
||||
KOrn can check mbox, qmail, POP3, and Imap4 mailboxes, as well as nntp
|
||||
servers. KOrn checks your mail on an interval that is user specified for
|
||||
each separate account. Once mail is received you can have KOrn run a
|
||||
third party program of your wish or change the color/icon of KOrn while
|
||||
docked in Kicker. In addition to this you can have KOrn run a program
|
||||
once you click on the docked icon in Kicker.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/korn
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/korn').
|
@ -0,0 +1,14 @@
|
||||
.TH KPALMDOC 1
|
||||
.SH NAME
|
||||
kpalmdoc \- TDE converter for PalmDOC texts
|
||||
.SH SYNOPSIS
|
||||
.B kpalmdoc
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KPalmDOC
|
||||
provides a user interface to converting between text files and PalmDOC files.
|
||||
Note that KPilot can also handle these conversions internally using the
|
||||
PalmDOC conduit.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.BR kpilot (1).
|
@ -0,0 +1,28 @@
|
||||
.TH KPILOT 1
|
||||
.SH NAME
|
||||
kpilot \- Palm Pilot synchronization software for TDE
|
||||
.SH SYNOPSIS
|
||||
.B kpilot
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B KPilot
|
||||
is an application that synchronizes a PalmPilot or similar device with
|
||||
the Trinity desktop, much like the Palm Desktop HotSync software does for
|
||||
Windows. KPilot can backup, restore, and HotSync your PalmPilot. It can
|
||||
synchronize the built-in applications with their TDE counterparts. It also
|
||||
features additional conduits for third-party software.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -s, --setup
|
||||
Setup the Pilot device, conduits and other parameters.
|
||||
.TP
|
||||
.B -c, --conduit-setup
|
||||
Deprecated, use
|
||||
.B --setup
|
||||
instead.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kpilot
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kpilot').
|
@ -0,0 +1,18 @@
|
||||
.TH KPILOTDAEMON 1
|
||||
.SH NAME
|
||||
kpilotDaemon \- KPilot server
|
||||
.SH SYNOPSIS
|
||||
.B kpilotDaemon
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B kpilotDaemon
|
||||
is a program that runs in the background and handles the actual communication
|
||||
with the PalmPilot device. It is run automatically when needed, so you
|
||||
normally should not have to run it manually.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --fail-silently
|
||||
Fail instead of complaining about bad configuration files.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.BR kpilot (1).
|
@ -0,0 +1,15 @@
|
||||
.TH KSYNC 1
|
||||
.SH NAME
|
||||
ksync \- TDE synchronization framework
|
||||
.SH SYNOPSIS
|
||||
.B ksync
|
||||
.I [Qt-options] [TDE-options] [file]
|
||||
.SH DESCRIPTION
|
||||
.B KSync
|
||||
allows you to synchronize calendar, bookmark, and address book data with
|
||||
external sources.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B file
|
||||
File to open.
|
||||
.so kdeopt.part
|
@ -0,0 +1,21 @@
|
||||
.TH KTNEF 1
|
||||
.SH NAME
|
||||
ktnef \- TNEF file viewer
|
||||
.SH SYNOPSIS
|
||||
.B ktnef
|
||||
.I [Qt-options] [TDE-options] [file]
|
||||
.SH DESCRIPTION
|
||||
.B Ktnef
|
||||
is an application for to view TNEF mail attachments. These attachments are
|
||||
usually found in mails coming from Microsoft mail servers and embed the mail
|
||||
properties as well as the actual attachments.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B file
|
||||
Attachment file to view.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/ktnef
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/ktnef').
|
@ -0,0 +1,17 @@
|
||||
.TH KWATCHGNUPG 1
|
||||
.SH NAME
|
||||
kwatchgnupg \- GnuPG log viewer
|
||||
.SH SYNOPSIS
|
||||
.B kwatchgnupg
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KWatchGnuPG
|
||||
is a simple GnuPG log viewer for GnuPG. It works as a GUI wrapper around
|
||||
the command line tool \fBwatchgnupg\fP, which listens on a socket for log lines
|
||||
from the GnuPG backend applications.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/kwatchgnupg
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/kwatchgnupg').
|
@ -0,0 +1,24 @@
|
||||
.TH KXML_COMPILER 1
|
||||
.SH NAME
|
||||
kxml_compiler \- TDE XML compiler
|
||||
.SH SYNOPSIS
|
||||
.B kxml_compiler
|
||||
.I [Qt-options] [TDE-options] [options] dtd
|
||||
.SH DESCRIPTION
|
||||
.B kxml_compiler
|
||||
generates parsers and container classes for XML data described by
|
||||
RelaxNG schemes.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -d, --directory \fI<dir>\fB
|
||||
Directory to generate files in. The default is the current directory.
|
||||
.TP
|
||||
.B --external-parser
|
||||
Generate the parser in a separate source file.
|
||||
.TP
|
||||
.B --custom-parser
|
||||
Generate a parser customized for the schema.
|
||||
.TP
|
||||
.B dtd
|
||||
Specifies the name of the DTD file.
|
||||
.so kdeopt.part
|
@ -0,0 +1,15 @@
|
||||
.TH NETWORKSTATUSTESTSERVICE 1
|
||||
.SH NAME
|
||||
networkstatustestservice \- Test application for the NetworkStatus monitor
|
||||
.SH SYNOPSIS
|
||||
.B networkstatustestservice
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B networkstatustestservice
|
||||
sets up a test application for the TDE network status monitor. After it
|
||||
starts, you can communicate with it using
|
||||
.B dcop
|
||||
(1).
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.so kdeopt.part
|
@ -0,0 +1,15 @@
|
||||
.TH SLOXWIZARD 1
|
||||
.SH NAME
|
||||
sloxwizard \- TDE Openexchange Wizard
|
||||
.SH SYNOPSIS
|
||||
.B sloxwizard
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B sloxwizard
|
||||
is a front end to configure SUSE Linux Openexchange servers.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --verbose
|
||||
Verbose output.
|
||||
.so kdeopt.part
|
||||
|
@ -0,0 +1,26 @@
|
||||
.TH TDEABC2MUTT 1
|
||||
.SH NAME
|
||||
tdeabc2mutt \- tdeabc to mutt converter
|
||||
.SH SYNOPSIS
|
||||
.B tdeabc2mutt
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
tdeabc2mutt converts the TDE address book's entries to Mutt format.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --query \fI<substring>\fB
|
||||
Only show contacts where name or address matches \fI<substring>\fP.
|
||||
.TP
|
||||
.B --format \fI<format>\fB
|
||||
Default format is `alias'. `query' returns
|
||||
email\fB<tab>\fPname\fB<tab>\fP, as needed by mutt's query_command.
|
||||
.TP
|
||||
.B --ignore-case
|
||||
Make queries case insensitive.
|
||||
.TP
|
||||
.B --all-addresses
|
||||
Return all mail addresses, not just the preferred one.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
.B kaddressbook
|
||||
(1).
|
@ -0,0 +1,39 @@
|
||||
Index: tdepim/cmake/modules/TDEMacros.cmake
|
||||
===================================================================
|
||||
--- tdepim.orig/cmake/modules/TDEMacros.cmake
|
||||
+++ tdepim/cmake/modules/TDEMacros.cmake
|
||||
@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target )
|
||||
|
||||
# set embedded archives
|
||||
if( _embed )
|
||||
- list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive )
|
||||
+ list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract )
|
||||
endif( _embed )
|
||||
|
||||
# set link libraries
|
||||
Index: tdepim/mimelib/CMakeLists.txt
|
||||
===================================================================
|
||||
--- tdepim.orig/mimelib/CMakeLists.txt
|
||||
+++ tdepim/mimelib/CMakeLists.txt
|
||||
@@ -43,7 +43,7 @@ tde_add_library( mimelib SHARED
|
||||
dwstring.cpp text.cpp token.cpp uuencode.cpp
|
||||
binhex.cpp
|
||||
VERSION 1.0.1
|
||||
- LINK ${TQT_LIBRARIES} ${TDE_LIB_DIR}/libtdefakes_pic.a
|
||||
+ LINK ${TQT_LIBRARIES} ${TDE_LIB_DIR}/libtdefakes_pic.a socket nsl
|
||||
DESTINATION ${LIB_INSTALL_DIR}
|
||||
)
|
||||
|
||||
Index: tdepim/kmail/kmfoldermbox.cpp
|
||||
===================================================================
|
||||
--- tdepim.orig/kmail/kmfoldermbox.cpp
|
||||
+++ tdepim/kmail/kmfoldermbox.cpp
|
||||
@@ -46,7 +46,7 @@
|
||||
#include <ctype.h>
|
||||
#include <unistd.h>
|
||||
|
||||
-#ifdef HAVE_FCNTL_H
|
||||
+#if defined(HAVE_FCNTL_H) || defined(__dilos__)
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
@ -0,0 +1 @@
|
||||
dilos.patch
|
@ -0,0 +1,97 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function
|
||||
# Also include the main Trinity path
|
||||
ifeq ("$(LD_LIBRARY_PATH)", "")
|
||||
LD_LIBRARY_PATH=debian/tmp/usr/lib:debian/tmp/usr/lib/trinity
|
||||
else
|
||||
LD_LIBRARY_PATH += :debian/tmp/usr/lib:debian/tmp/usr/lib/trinity
|
||||
endif
|
||||
export LD_LIBRARY_PATH
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/cmake.mk
|
||||
include debian/cdbs/debian-tde.mk
|
||||
|
||||
DEB_KDE_APIDOX := yes
|
||||
|
||||
CPPFLAGS+= -D__dilos__
|
||||
|
||||
DEB_CMAKE_EXTRA_FLAGS := \
|
||||
-DLIB_SUFFIX="" \
|
||||
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||
-DCONFIG_INSTALL_DIR="/etc/trinity" \
|
||||
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
|
||||
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
|
||||
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
||||
-DCMAKE_SKIP_RPATH="OFF" \
|
||||
-DBUILD_ALL="ON" \
|
||||
-DWITH_ARTS="ON" \
|
||||
-DWITH_SASL="ON" \
|
||||
-DWITH_NEWDISTRLISTS="ON" \
|
||||
-DWITH_GNOKII="OFF" \
|
||||
-DWITH_EXCHANGE="ON" \
|
||||
-DWITH_EGROUPWARE="ON" \
|
||||
-DWITH_KOLAB="ON" \
|
||||
-DWITH_SLOX="ON" \
|
||||
-DWITH_GROUPWISE="ON" \
|
||||
-DWITH_FEATUREPLAN="ON" \
|
||||
-DWITH_GROUPDAV="ON" \
|
||||
-DWITH_BIRTHDAYS="ON" \
|
||||
-DWITH_NEWEXCHANGE="ON" \
|
||||
-DWITH_SCALIX="ON" \
|
||||
-DWITH_CALDAV="ON" \
|
||||
-DWITH_CARDDAV="ON" \
|
||||
-DWITH_INDEXLIB="ON" \
|
||||
-DWITH_XSCREENSAVER="ON" \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_C_COMPILER=gcc \
|
||||
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||
|
||||
DEB_MAKE_CHECK_TARGET = check
|
||||
|
||||
DEB_DH_INSTALL_SOURCEDIR := $(DEB_DESTDIR)
|
||||
|
||||
DEB_INSTALL_DOCS_ALL :=
|
||||
|
||||
DEB_INSTALL_CHANGELOGS_ALL = $(shell for f in ChangeLog CHANGELOG CHANGES; do if test -s $(DEB_SRCDIR)/$(cdbs_curpkg)/$$f; then echo $(DEB_SRCDIR)/$(cdbs_curpkg)/$$f; break; fi; done)
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
||||
|
||||
shlibs_ver=4:3.5.7
|
||||
DEB_DH_MAKESHLIBS_ARGS_libindex0-trinity := -V'libindex0-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libtdenetwork2-trinity := -V'libtdenetwork2-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libtdepim1a-trinity := -V'libtdepim1a-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libkgantt0-trinity := -V'libkgantt0-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libkleopatra1-trinity := -V'libkleopatra1-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libkmime2-trinity := -V'libkmime2-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libkpimexchange1-trinity := -V'libkpimexchange1-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libkpimidentities1-trinity := -V'libkpimidentities1-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libksieve0-trinity := -V'libksieve0-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libktnef1-trinity := -V'libktnef1-trinity (>= $(shlibs_ver))'
|
||||
DEB_DH_MAKESHLIBS_ARGS_libmimelib1c2a-trinity := -V'libmimelib1c2a-trinity (>= $(shlibs_ver))'
|
||||
|
||||
# kontact-trinity starts fine without korganizer-trinity or kpilot-trinity dependencies
|
||||
# specialdates-trinity is only in recommends to get the kaddressbook-trinity dependency there
|
||||
kontact-trinity_recommends_plugins := korganizer specialdates
|
||||
kontact-trinity_suggests_plugins := journal todo
|
||||
|
||||
DEB_DH_SHLIBDEPS_ARGS_kontact-trinity := \
|
||||
$(foreach p,$(kontact-trinity_recommends_plugins) $(kontact-trinity_suggests_plugins),-Xusr/lib/$(DEB_HOST_MULTIARCH)/trinity/libkontact_$(p)plugin.so) \
|
||||
-- -dRecommends \
|
||||
$(foreach p,$(kontact-trinity_recommends_plugins),debian/kontact-trinity/usr/lib/$(DEB_HOST_MULTIARCH)/trinity/libkontact_$(p)plugin.so) \
|
||||
-dSuggests \
|
||||
$(foreach p,$(kontact-trinity_suggests_plugins),debian/kontact-trinity/usr/lib/$(DEB_HOST_MULTIARCH)/trinity/libkontact_$(p)plugin.so) \
|
||||
-dDepends # Since -u args go first in dpkg-shlibdeps call
|
||||
|
||||
test-shlibdeps:
|
||||
@echo $(DEB_DH_SHLIBDEPS_ARGS_kontact-trinity)
|
||||
|
||||
KDE_UPSTREAM_VERSION := $(shell echo $(DEB_UPSTREAM_VERSION) | sed -e 's/\.dfsg.*//')
|
||||
KDE_TARBALL := ../$(DEB_SOURCE_PACKAGE)-$(KDE_UPSTREAM_VERSION).tar.bz2
|
||||
KDE_SOURCEDIR := dfsg-tmp/$(DEB_SOURCE_PACKAGE)-$(KDE_UPSTREAM_VERSION)
|
||||
NEWDEB_SOURCEDIR := $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
|
||||
|
||||
DEB_DH_STRIP_ARGS := -Xlibindex.so.0.0.0 -Xlibgpgme++.so.0.4.0 \
|
||||
-Xlibmimelib.so.1.0.1
|
@ -0,0 +1,3 @@
|
||||
libakregatorprivate 0
|
||||
libkmailprivate 0
|
||||
libknodecommon 0
|
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
@ -0,0 +1,6 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
||||
|
||||
# Don't run differences
|
||||
diff-ignore = .*
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-kaddressbook
|
||||
Title: The KAddressBook Handbook
|
||||
Author: Tobias Koenig, Steffen Hansen, Don Sanders
|
||||
Abstract: KAddressBook is the TDE address book.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kaddressbook/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kaddressbook/*.html
|
@ -0,0 +1,10 @@
|
||||
Document: tdepim-doc-html-kalarm
|
||||
Title: The KAlarm Handbook
|
||||
Author: David Jarvie
|
||||
Abstract: KAlarm is a personal alarm message, command and email
|
||||
scheduler for TDE.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kalarm/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kalarm/*.html
|
@ -0,0 +1,10 @@
|
||||
Document: tdepim-doc-html-kandy
|
||||
Title: The Kandy Handbook
|
||||
Author: Cornelius Schumacher
|
||||
Abstract: Kandy is an application for synchronizing the data on a mobile
|
||||
phone with the data on the desktop.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kandy/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kandy/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-karm
|
||||
Title: The KArm Handbook
|
||||
Author: Jonathan Singer, Mark Bucciarelli, Sirtaj Singh Kang
|
||||
Abstract: KArm tracks time spent on various tasks.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/karm/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/karm/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-kleopatra
|
||||
Title: The Kleopatra Handbook
|
||||
Author: Marc Mutz
|
||||
Abstract: Kleopatra is a tool for managing X.509 certificates.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kleopatra/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kleopatra/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-kmail
|
||||
Title: The KMail Handbook
|
||||
Author: Daniel Naber, David Rugge
|
||||
Abstract: KMail is TDE's powerful and user friendly email client.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kmail/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kmail/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-knode
|
||||
Title: The KNode manual
|
||||
Author: Stephan Johach, Thomas Schûtz
|
||||
Abstract: KNode is an easy-to-use newsreader.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/knode/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/knode/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-knotes
|
||||
Title: The KNotes Handbook
|
||||
Author: Fabian Dal Santo, Grep M. Holmes
|
||||
Abstract: KNotes is a sticky notes application for the desktop.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/knotes/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/knotes/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-konsolekalendar
|
||||
Title: The KonsoleKalendar Handbook
|
||||
Author: Tuukka Pasanen, Allen Winter
|
||||
Abstract: KonsoleKalendar is a command line interface to TDE calendars.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/konsolekalendar/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/konsolekalendar/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-kontact
|
||||
Title: The Kontact Handbook
|
||||
Author: Cornelius Schumacher
|
||||
Abstract: Kontact is a command line interface to TDE calendars.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kontact/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kontact/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-korganizer
|
||||
Title: The KOrganizer Handbook
|
||||
Author: Milos Prudek, Paul E. Ahlquist Jr., Jürgen Nagel
|
||||
Abstract: KOrganizer is an easy to use personal information manager.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/korganizer/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/korganizer/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-korn
|
||||
Title: The KOrn Handbook
|
||||
Author: Nick Betcher
|
||||
Abstract: KOrn is a mail monitor.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/korn/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/korn/*.html
|
@ -0,0 +1,10 @@
|
||||
Document: tdepim-doc-html-kpilot
|
||||
Title: The KPilot Handbook
|
||||
Author: Carlos Leonhard Woelz, Adriaan de Groot, Dan Pilone
|
||||
Abstract: KPilot is the TDE version of the Desktop HotSync software for
|
||||
Palm Pilot handhelds.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kpilot/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kpilot/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-ktnef
|
||||
Title: The TNEF File Viewer Handbook
|
||||
Author: Michael Goffioul
|
||||
Abstract: The TNEF File Viewer is an application for TNEF mail attachments.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/ktnef/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/ktnef/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-kwatchgnupg
|
||||
Title: The KWatchGnuPG Handbook
|
||||
Author: Marc Mutz
|
||||
Abstract: KWatchGnuPG is a simple GnuPG log viewer.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kwatchgnupg/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kwatchgnupg/*.html
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-doc-html-multisynk
|
||||
Title: The MultiSynk Handbook
|
||||
Author: Tobias Koenig
|
||||
Abstract: TDE synchronization application.
|
||||
Section: Apps/Tools
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/multisynk/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/multisynk/*.html
|
@ -0,0 +1,6 @@
|
||||
/usr/lib/*/trinity/tdefile_ics.la
|
||||
/usr/lib/*/trinity/tdefile_ics.so
|
||||
/usr/lib/*/trinity/tdefile_vcf.la
|
||||
/usr/lib/*/trinity/tdefile_vcf.so
|
||||
/usr/share/services/tdefile_ics.desktop
|
||||
/usr/share/services/tdefile_vcf.desktop
|
@ -0,0 +1,22 @@
|
||||
/usr/lib/*/trinity/tdeio_groupwise.la
|
||||
/usr/lib/*/trinity/tdeio_groupwise.so
|
||||
/usr/lib/*/trinity/tdeio_imap4.la
|
||||
/usr/lib/*/trinity/tdeio_imap4.so
|
||||
/usr/lib/*/trinity/tdeio_mbox.la
|
||||
/usr/lib/*/trinity/tdeio_mbox.so
|
||||
/usr/lib/*/trinity/tdeio_scalix.la
|
||||
/usr/lib/*/trinity/tdeio_scalix.so
|
||||
/usr/lib/*/trinity/tdeio_sieve.la
|
||||
/usr/lib/*/trinity/tdeio_sieve.so
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/groupwise
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/mbox
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/scalix
|
||||
/usr/share/doc/tde/HTML/en/tdeioslave/sieve
|
||||
/usr/share/services/groupwise.protocol
|
||||
/usr/share/services/groupwises.protocol
|
||||
/usr/share/services/imap4.protocol
|
||||
/usr/share/services/imaps.protocol
|
||||
/usr/share/services/mbox.protocol
|
||||
/usr/share/services/scalix.protocol
|
||||
/usr/share/services/scalixs.protocol
|
||||
/usr/share/services/sieve.protocol
|
@ -0,0 +1,104 @@
|
||||
/usr/lib/*/trinity/tdeabc_*.la
|
||||
/usr/lib/*/trinity/tdeabc_*.so
|
||||
/usr/lib/*/trinity/kcal_caldav.la
|
||||
/usr/lib/*/trinity/kcal_caldav.so
|
||||
/usr/lib/*/trinity/tdeabc_carddav.la
|
||||
/usr/lib/*/trinity/tdeabc_carddav.so
|
||||
/usr/lib/*/trinity/kcal_groupdav.la
|
||||
/usr/lib/*/trinity/kcal_groupdav.so
|
||||
/usr/lib/*/trinity/kcal_groupwise.la
|
||||
/usr/lib/*/trinity/kcal_groupwise.so
|
||||
/usr/lib/*/trinity/kcal_kolab.la
|
||||
/usr/lib/*/trinity/kcal_kolab.so
|
||||
/usr/lib/*/trinity/kcal_scalix.la
|
||||
/usr/lib/*/trinity/kcal_scalix.so
|
||||
/usr/lib/*/trinity/kcal_newexchange.la
|
||||
/usr/lib/*/trinity/kcal_newexchange.so
|
||||
/usr/lib/*/trinity/kcal_resourcefeatureplan.la
|
||||
/usr/lib/*/trinity/kcal_resourcefeatureplan.so
|
||||
/usr/lib/*/trinity/kcal_slox.la
|
||||
/usr/lib/*/trinity/kcal_slox.so
|
||||
/usr/lib/*/trinity/kcal_xmlrpc.la
|
||||
/usr/lib/*/trinity/kcal_xmlrpc.so
|
||||
/usr/lib/*/trinity/knotes_kolab.la
|
||||
/usr/lib/*/trinity/knotes_kolab.so
|
||||
/usr/lib/*/trinity/knotes_scalix.la
|
||||
/usr/lib/*/trinity/knotes_scalix.so
|
||||
/usr/lib/*/trinity/knotes_xmlrpc.la
|
||||
/usr/lib/*/trinity/knotes_xmlrpc.so
|
||||
/usr/lib/*/libtdeabckolab.so.0
|
||||
/usr/lib/*/libtdeabckolab.so.0.0.0
|
||||
/usr/lib/*/libtdeabcscalix.so.0
|
||||
/usr/lib/*/libtdeabcscalix.so.0.0.0
|
||||
/usr/lib/*/libtdeabc_groupdav.so.1
|
||||
/usr/lib/*/libtdeabc_groupdav.so.1.0.0
|
||||
/usr/lib/*/libtdeabc_groupwise.so.1
|
||||
/usr/lib/*/libtdeabc_groupwise.so.1.0.0
|
||||
/usr/lib/*/libtdeabc_newexchange.so.1
|
||||
/usr/lib/*/libtdeabc_newexchange.so.1.0.0
|
||||
/usr/lib/*/libtdeabc_slox.so.0
|
||||
/usr/lib/*/libtdeabc_slox.so.0.0.0
|
||||
/usr/lib/*/libtdeabc_xmlrpc.so.1
|
||||
/usr/lib/*/libtdeabc_xmlrpc.so.1.0.0
|
||||
/usr/lib/*/libkcalkolab.so.0
|
||||
/usr/lib/*/libkcalkolab.so.0.0.0
|
||||
/usr/lib/*/libkcalscalix.so.0
|
||||
/usr/lib/*/libkcalscalix.so.0.0.0
|
||||
/usr/lib/*/libkcal_caldav.so.1
|
||||
/usr/lib/*/libkcal_caldav.so.1.0.0
|
||||
/usr/lib/*/libtdeabc_carddav.so.1
|
||||
/usr/lib/*/libtdeabc_carddav.so.1.0.0
|
||||
/usr/lib/*/libkcal_groupdav.so.1
|
||||
/usr/lib/*/libkcal_groupdav.so.1.0.0
|
||||
/usr/lib/*/libkcal_groupwise.so.1
|
||||
/usr/lib/*/libkcal_groupwise.so.1.0.0
|
||||
/usr/lib/*/libkcal_newexchange.so.1
|
||||
/usr/lib/*/libkcal_newexchange.so.1.0.0
|
||||
/usr/lib/*/libkcal_resourcefeatureplan.so.1
|
||||
/usr/lib/*/libkcal_resourcefeatureplan.so.1.0.0
|
||||
/usr/lib/*/libkcal_slox.so.0
|
||||
/usr/lib/*/libkcal_slox.so.0.0.0
|
||||
/usr/lib/*/libkcal_xmlrpc.so.1
|
||||
/usr/lib/*/libkcal_xmlrpc.so.1.0.0
|
||||
/usr/lib/*/libkgroupwarebase.so.0
|
||||
/usr/lib/*/libkgroupwarebase.so.0.0.0
|
||||
/usr/lib/*/libkgroupwaredav.so.0
|
||||
/usr/lib/*/libkgroupwaredav.so.0.0.0
|
||||
/usr/lib/*/libknoteskolab.so.0
|
||||
/usr/lib/*/libknoteskolab.so.0.0.0
|
||||
/usr/lib/*/libknotesscalix.so.0
|
||||
/usr/lib/*/libknotesscalix.so.0.0.0
|
||||
/usr/lib/*/libknotes_xmlrpc.so.1
|
||||
/usr/lib/*/libknotes_xmlrpc.so.1.0.0
|
||||
/usr/lib/*/libkslox.so.0
|
||||
/usr/lib/*/libkslox.so.0.0.0
|
||||
/usr/lib/*/libgwsoap.so.0
|
||||
/usr/lib/*/libgwsoap.so.0.0.0
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_groupdav.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_groupwise.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_newexchange.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_opengroupware.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_ox.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_slox.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_xmlrpc.desktop
|
||||
/usr/share/services/tderesources/tdeabc/kolab.desktop
|
||||
/usr/share/services/tderesources/tdeabc/scalix.desktop
|
||||
/usr/share/services/tderesources/kcal/exchange.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_caldav.desktop
|
||||
/usr/share/services/tderesources/tdeabc/tdeabc_carddav.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_groupdav.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_groupwise.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_newexchange.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_opengroupware.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_ox.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_resourcefeatureplan.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_slox.desktop
|
||||
/usr/share/services/tderesources/kcal/kcal_xmlrpc.desktop
|
||||
/usr/share/services/tderesources/kcal/kolab.desktop
|
||||
/usr/share/services/tderesources/kcal/scalix.desktop
|
||||
/usr/share/services/tderesources/knotes/knotes_xmlrpc.desktop
|
||||
/usr/share/services/tderesources/knotes/kolabresource.desktop
|
||||
/usr/share/services/tderesources/knotes/scalix.desktop
|
||||
|
||||
/usr/share/apps/tdeconf_update/upgrade-resourcetype.pl
|
||||
/usr/share/apps/tdeconf_update/kolab-resource.upd
|
@ -0,0 +1,80 @@
|
||||
/usr/include/KNotesAppIface.h
|
||||
/usr/include/KNotesIface.h
|
||||
/usr/include/akregator
|
||||
/usr/include/calendar
|
||||
/usr/include/tdeabc
|
||||
/usr/include/kaddressbook
|
||||
/usr/include/kmail
|
||||
/usr/include/kmailIface.h
|
||||
/usr/include/kmailicalIface.h
|
||||
/usr/include/kmailpartIface.h
|
||||
/usr/include/kontact
|
||||
/usr/include/korganizer
|
||||
/usr/lib/*/libtdeabckolab.la
|
||||
/usr/lib/*/libtdeabckolab.so
|
||||
/usr/lib/*/libtdeabcscalix.la
|
||||
/usr/lib/*/libtdeabcscalix.so
|
||||
/usr/lib/*/libtdeabc_groupdav.la
|
||||
/usr/lib/*/libtdeabc_groupdav.so
|
||||
/usr/lib/*/libtdeabc_groupwise.la
|
||||
/usr/lib/*/libtdeabc_groupwise.so
|
||||
/usr/lib/*/libtdeabc_newexchange.la
|
||||
/usr/lib/*/libtdeabc_newexchange.so
|
||||
/usr/lib/*/libtdeabc_slox.la
|
||||
/usr/lib/*/libtdeabc_slox.so
|
||||
/usr/lib/*/libtdeabc_xmlrpc.la
|
||||
/usr/lib/*/libtdeabc_xmlrpc.so
|
||||
/usr/lib/*/libkabinterfaces.la
|
||||
/usr/lib/*/libkabinterfaces.so
|
||||
/usr/lib/*/libkaddressbook.la
|
||||
/usr/lib/*/libkaddressbook.so
|
||||
/usr/lib/*/libkcalkolab.la
|
||||
/usr/lib/*/libkcalkolab.so
|
||||
/usr/lib/*/libkcalscalix.la
|
||||
/usr/lib/*/libkcalscalix.so
|
||||
/usr/lib/*/libkcal_groupdav.la
|
||||
/usr/lib/*/libkcal_groupdav.so
|
||||
/usr/lib/*/libkcal_groupwise.la
|
||||
/usr/lib/*/libkcal_groupwise.so
|
||||
/usr/lib/*/libkcal_newexchange.la
|
||||
/usr/lib/*/libkcal_newexchange.so
|
||||
/usr/lib/*/libkcal_resourcefeatureplan.la
|
||||
/usr/lib/*/libkcal_resourcefeatureplan.so
|
||||
/usr/lib/*/libkcal_slox.la
|
||||
/usr/lib/*/libkcal_slox.so
|
||||
/usr/lib/*/libkcal_xmlrpc.la
|
||||
/usr/lib/*/libkcal_xmlrpc.so
|
||||
/usr/lib/*/libkgroupwarebase.la
|
||||
/usr/lib/*/libkgroupwarebase.so
|
||||
/usr/lib/*/libkgroupwaredav.la
|
||||
/usr/lib/*/libkgroupwaredav.so
|
||||
/usr/lib/*/libkmime.la
|
||||
/usr/lib/*/libkmime.so
|
||||
/usr/lib/*/libknoteskolab.la
|
||||
/usr/lib/*/libknoteskolab.so
|
||||
/usr/lib/*/libknotesscalix.la
|
||||
/usr/lib/*/libknotesscalix.so
|
||||
/usr/lib/*/libknotes_xmlrpc.la
|
||||
/usr/lib/*/libknotes_xmlrpc.so
|
||||
/usr/lib/*/libkocorehelper.la
|
||||
/usr/lib/*/libkocorehelper.so
|
||||
/usr/lib/*/libkontact.la
|
||||
/usr/lib/*/libkontact.so
|
||||
/usr/lib/*/libkorganizer.la
|
||||
/usr/lib/*/libkorganizer.so
|
||||
/usr/lib/*/libkorganizer_calendar.la
|
||||
/usr/lib/*/libkorganizer_calendar.so
|
||||
/usr/lib/*/libkorganizer_eventviewer.la
|
||||
/usr/lib/*/libkorganizer_eventviewer.so
|
||||
/usr/lib/*/libkorg_stdprinting.la
|
||||
/usr/lib/*/libkorg_stdprinting.so
|
||||
/usr/lib/*/libkpimidentities.la
|
||||
/usr/lib/*/libkpimidentities.so
|
||||
/usr/lib/*/libkpinterfaces.la
|
||||
/usr/lib/*/libkpinterfaces.so
|
||||
/usr/lib/*/libkslox.la
|
||||
/usr/lib/*/libkslox.so
|
||||
/usr/lib/*/libgwsoap.la
|
||||
/usr/lib/*/libgwsoap.so
|
||||
/usr/include/kpimprefs.h
|
||||
/usr/share/cmake
|
@ -0,0 +1,9 @@
|
||||
Document: tdepim-trinity-doc
|
||||
Title: TDE PIM Library API Documentation
|
||||
Author: The KDE Developers, The TDE Team
|
||||
Abstract: This is the developers' API documentation for tdepim.
|
||||
Section: Apps/Programming
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/tdepim-apidocs/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/tdepim-apidocs/*.html
|
@ -0,0 +1 @@
|
||||
/usr/share/doc/tde/HTML/en/tdepim-apidocs/*
|
@ -0,0 +1,26 @@
|
||||
/usr/bin/egroupwarewizard
|
||||
/usr/bin/exchangewizard
|
||||
/usr/bin/groupwarewizard
|
||||
/usr/bin/groupwisewizard
|
||||
/usr/bin/kolabwizard
|
||||
/usr/bin/scalixadmin
|
||||
/usr/bin/scalixwizard
|
||||
/usr/bin/sloxwizard
|
||||
/usr/lib/*/trinity/libegroupwarewizard.la
|
||||
/usr/lib/*/trinity/libegroupwarewizard.so
|
||||
/usr/lib/*/trinity/libexchangewizard.la
|
||||
/usr/lib/*/trinity/libexchangewizard.so
|
||||
/usr/lib/*/trinity/libgroupwisewizard.la
|
||||
/usr/lib/*/trinity/libgroupwisewizard.so
|
||||
/usr/lib/*/trinity/libkolabwizard.la
|
||||
/usr/lib/*/trinity/libkolabwizard.so
|
||||
/usr/lib/*/trinity/libscalixwizard.la
|
||||
/usr/lib/*/trinity/libscalixwizard.so
|
||||
/usr/lib/*/trinity/libsloxwizard.la
|
||||
/usr/lib/*/trinity/libsloxwizard.so
|
||||
/usr/share/applications/tde/groupwarewizard.desktop
|
||||
/usr/share/config.kcfg/egroupware.kcfg
|
||||
/usr/share/config.kcfg/groupwise.kcfg
|
||||
/usr/share/config.kcfg/kolab.kcfg
|
||||
/usr/share/config.kcfg/scalix.kcfg
|
||||
/usr/share/config.kcfg/slox.kcfg
|
@ -0,0 +1,6 @@
|
||||
debian/man/out/egroupwarewizard-trinity.1
|
||||
debian/man/out/exchangewizard-trinity.1
|
||||
debian/man/out/groupwarewizard-trinity.1
|
||||
debian/man/out/groupwisewizard-trinity.1
|
||||
debian/man/out/kolabwizard-trinity.1
|
||||
debian/man/out/sloxwizard-trinity.1
|
@ -0,0 +1,41 @@
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="EGroupware Setup Wizard"\
|
||||
command="/usr/bin/egroupwarewizard"
|
||||
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="MS Exchange Setup Wizard"\
|
||||
command="/usr/bin/exchangewizard"
|
||||
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="TDE Groupware Wizard"\
|
||||
command="/usr/bin/groupwarewizard"
|
||||
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="Novell GroupWise Setup Wizard"\
|
||||
command="/usr/bin/groupwisewizard"
|
||||
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="KOLab Setup Wizard"\
|
||||
command="/usr/bin/kolabwizard"
|
||||
|
||||
?package(tdepim-wizards-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Network/Communication"\
|
||||
hints="TDE"\
|
||||
title="Openexchange Setup Wizard"\
|
||||
command="/usr/bin/sloxwizard"
|
Loading…
Reference in new issue