
Various KDE 1.-4. Improvements
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
details here:
http://www.kdelook.org/content/show.php?content=6702
17 years ago
Resizes appropriately on smaller panels.
Border / text colour is now configurable.
Migration to a seperate configuration file from KPager.
Added a right-click context menu, with a menu item to the "Multiple Desktops" configuration.
Few more code clean ups.
17 years ago
Resizes appropriately on smaller panels.
Border / text colour is now configurable.
Migration to a seperate configuration file from KPager.
Added a right-click context menu, with a menu item to the "Multiple Desktops" configuration.
Few more code clean ups.
Cwiiis
17 years ago
Report
epoch
17 years ago
Yes, I'll have to dig out my intellimouse now :)
Report
sourcexx
17 years ago
to get rig of the libglcore deps just try something like this:
---
#!/bin/sh
NVIDIA_RUNNING=`/sbin/lsmod | grep -c nvidia`
if test "${NVIDIA_RUNNING}" -gt "0"; then
echo + nvidia libgl running - replacing symlink with xfree gl...
cd /usr/lib/
rm libGL.so.1
ln -s GL/libGL.so.1.2.xf86_glx libGL.so.1
fi
BUILDYOURRPMHERE
if test "${NVIDIA_RUNNING}" -gt "0"; then
echo + recovering nvidia gl
NV_GLX_LIB=`ls -la /usr/lib/libGL.so.*.*.* | \
awk -F "/usr/lib/" '{print $2}'`
cd /usr/lib/
rm libGL.so.1
ln -s ${NV_GLX_LIB} libGL.so.1
---
rgds
marc'O
Report
ranger
17 years ago
In your ~/.rpmmacros, add something like this (one line):
%__find_requires /path/to/find_requires_nonvidia %__find_requires_path %{?buildroot:%{buildroot}} %{?_target_cpu:%{_target_cpu}}
And use http://ranger.dnsalias.com/mandrake/configs/find-requires-nonvidia as /path/to/find_requires_nonvidia
Report
ranger
17 years ago
%__find_requires /path/to/find_requires_nonvidia %{?buildroot:%{buildroot}} %{?_target_cpu:%{_target_cpu}}
Report
oman
17 years ago
Any help would be appreciated, thanks!
Report
epoch
17 years ago
Report
rex
17 years ago
rpm --rebuilddb
rpm -e kickerpager
Report