|
SHR -- Stable Hybrid Release -- smoothing enlightenment-Desktop by ChrisPZV
Smoothing the e17 enlightenment desktop environment of SHR can be done by reniceing its process:
|
wget -O /etc/rcS.d/S99renice http://www.chpohl.de/openmoko/renice/etc_rcS.d_S99renice && chmod 0755 /etc/rcS.d/S99renice && /etc/rcS.d/S99renice
| Code:
#!/bin/sh
(
E_PID=
while test -z $E_PID; do
E_PID=`ls -1 /tmp/enlightenment-root/disp* | tail -1 | cut -d '|' -f 1 | awk -F- '{print $NF}'`
sleep 2;
done
renice 2 -p $E_PID
) &
Note:
This hack comes with absolutely no warranty. It is inspired from zoff99.
|