


Dolphin Service Menus by hash87 124 comments
...
function get_dropbox_folder {
if [ -f "$HOME/.dropbox/info.json" ]; then
DROPBOX_FOLDER=$(grep -P -o -w '(?<="path"\: ")[^\"]+' $HOME/.dropbox/info.json)
return
fi
... - Jul 09 2015

QtCurve by CraigD 2890 comments
--- style/shadowhelper.c.orig 2012-09-08 16:29:10.000000000 +0100
+++ style/shadowhelper.c 2012-09-08 16:28:36.000000000 +0100
@@ -58,6 +58,7 @@
cairo_rectangle(cr, 0, 0, shadowSize, shadowSize);
cairo_fill(cr);
cairo_destroy(cr);
+ cairo_surface_destroy(dest);
g_object_unref(pixbuf);
return pixmap;
}
- Nov 09 2012

QtCurve by CraigD 2890 comments
Thanks! - Aug 04 2012

QtCurve by CraigD 2890 comments

Plasma 4 Extensions by Genserowski 6 comments

Web Runners by tcat 12 comments

Web Runners by jgoday 17 comments

Web Runners by tcat 12 comments
Well, yea, if you copy words to clipboard, that is bug, because you will copy the prefix too. I'll fix it. - Aug 11 2011

Web Runners by tcat 12 comments
However, I guess, you will find Suse package soon. - Aug 10 2011

Web Runners by tcat 12 comments

Network by anthon38 90 comments
PS: Maybe someone interested: I wanted full transparent widgets on the desktop, so I downloaded an other nice theme, called "Named", and set up as widget background on the details tab. - Jun 24 2011

Amarok 2.x Scripts by bumbi1 7 comments

Plasma 4 Extensions by PVince81 7 comments

Plasma 4 Extensions by PVince81 7 comments
So its overall 85% from me, since it's the only plasmoid I found and easy to use. The TODO list is valid btw. hope you will work on it. - May 05 2011

Plasma 4 Extensions by alexoleshkevich 38 comments

Plasma 4 Extensions by alexoleshkevich 38 comments
nano ~/.kde4/share/apps/plasma/plasmoids/simple-cpu-sensor/contents/code/main.py
def updateLabel(self):
color = 'blue'
fh = open('/sys/class/hwmon/hwmon1/device/temp1_input', 'r')
t = fh.read()
t = int(t)/1000
fh2 = open('/sys/class/hwmon/hwmon0/device/fan1_input', 'r')
f = fh2.read()
if(t > 75 and t < 80):
color = 'white'
elif(t > 80):
color = 'red'
else:
color = 'white'
self.label.setText('<font color="lightgray"><b>' + str(f) + ' RPM</b></font> <font color="' + color + '"><b>' + str(t) + "° C</b></font>")
- Mar 18 2011