


Utilities by phlegmatic 60 comments

Wallpaper Other by merlino211 3 comments

Wallpaper Other by merlino211 3 comments
I'd really enjoy a higher res version, if you've still got the original! - Nov 15 2005

Various KDE 1.-4. Improvements by maarizwan 11 comments

Various KDE 1.-4. Improvements by sparxxxie 13 comments
My only concern would be that the feature is disabled by default configuration, in case of the user having lesser-efficient drivers and/or software-based acceleration.
And I'm not directing this as you, sparxxxie - Merely stating that until even lower-level hardware can actually pull off simple GL animations like this in movie-like grace that so many of us expect, it's going to unnerve the senses. - Jul 25 2005
I notice while running gmake the flag "-mtune=pentiumpro" running on each command... Now, I'm familiar with Linux as a user, so humor me here - can I change this directly or indirectly to optimize the build for my Athlon XP 2400?
Thanks for your hard work on this app!!! - Jul 13 2005

Wallpaper Other by tripinstar 4 comments
You're wasting your own bandwidth with every upload, and making those of us who enjoy this true passion of this site less apt to return. - Jun 29 2005

Wallpaper Other by tripinstar 11 comments

Wallpaper Other by tripinstar 8 comments
Go post this on an old-school BBS where it belongs. - Jun 29 2005

Wallpaper Other by jojo965 3 comments

Various KDE 1.-4. Improvements by sirajr 613 comments

Developers Apps by brockers 37 comments
Change line 454 of kconfigure.cpp:
KLineEditDlg argdlg( i18n("Configure with Arguments"), "--prefix=$KDEDIR", this); - May 14 2005

System Software by lastnico 117 comments
/mnt/dl/linux/ksystemlog/admin/missing: line 46: aclocal-1.7: command not found
WARNING: `aclocal-1.7' is missing on your system. You should only need it if
you modified `acinclude.m4' or `configure.in'. You might want
to install the `Automake' and `Perl' packages. Grab them from
any GNU archive site.
/mnt/dl/linux/ksystemlog/admin/missing: line 46: automake-1.7: command not found
WARNING: `automake-1.7' is missing on your system. You should only need it if
you modified `Makefile.am', `acinclude.m4' or `configure.in'.
You might want to install the `Automake' and `Perl' packages.
Grab them from any GNU archive site.
configure.in:39: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.in:44: error: possibly undefined macro: AM_CONFIG_HEADER
configure.in:47: error: possibly undefined macro: AC_CHECK_COMPILERS
configure.in:48: error: possibly undefined macro: AC_ENABLE_SHARED
configure.in:49: error: possibly undefined macro: AC_ENABLE_STATIC
configure.in:54: error: possibly undefined macro: AM_KDE_WITH_NLS
configure.in:57: error: possibly undefined macro: AC_PATH_KDE
configure.in:62: error: possibly undefined macro: AC_CHECK_KDEMAXPATHLEN
make[1]: *** [configure] Error 1
make: *** [configure] Error 2 - May 04 2005

Various KDE 1.-4. Improvements by smileaf 237 comments

Various KDE 1.-4. Improvements by lokheed 128 comments

Various KDE 1.-4. Improvements by lokheed 128 comments
That said, I'd like to propose an 'advanced', user-activated option to show verbose output of file changes made along the way. What better way to show newbies how to make custom changes on their own through the commandline, but also give experienced users what they might need to know for debugging. - Dec 25 2004

Various Plasma 5 Improvements by dangvd 703 comments
http://home.comcast.net/~mcorven/images/snapshot1.png
My ksmoothdock is placed on the bottom of the screen. Please note:
1) My desktop background is using a random slideshow. Notice how ksmookdock isn't sensing this and updating the screen accordingly.
2) Why is the program name all funky looking?
Great stuff, keep it up!!!
Thanks! - Dec 23 2004

Dolphin Service Menus by dayzed 1 comment
Edit the bottom portion of shred_files.desktop as so:
[Desktop Action shred-folder-contents]
Name=Shred Folder & All Contents
Icon=stop
Exec=shredfiles %f
Now create a new file, /usr/bin/shredfiles, and don't forget to make it executable!
:::::CODE:::::
BASEDIR=$1
cd $BASEDIR
find -depth -type d > ~/out
cut --bytes=3- ~/out > ~/out
perl -p -e 's/\n/ /' < ~/out > ~/out
perl -p -e 's/ / /' < ~/out > ~/out
arrayZ=( `more ~/out` )
#element_count=${#arrayZ[@]}
#echo '$element_count = '$element_count
for i in "${arrayZ[@]}"
do
cd $BASEDIR/$i
for file in `ls -a`
do
shred -vfuxz $file
done
done
cd $BASEDIR
for file in `ls -a`
do
shred -vfuxz $file
done
rm -fr *
cd ..
rmdir $BASEDIR
shred -vfuxz ~/out
:::::CODE:::::
ISSUES: There are obvious problems with this script. It does not properly handle: links, directories having space(s) in name, and probably lots of stuff I'm not thinking of. Furthermore, it forcibly removes the leftovers that it missed (which means those files are still very much recoverable!).
..anyways, I gave up Windows cold-turkey last month. Today, I'm a happier man. ;) - Nov 06 2004