Search found 7 matches

by technosaurus
Mon Nov 26, 2012 6:18 am
Forum: PCManFM
Topic: gvfs alternative
Replies: 0
Views: 3470

gvfs alternative

One of the developers on the Puppy Linux forum has been working on an alternative to gvfs and has gotten most of the bugs worked out now.
If anyone would like to check it out, it is here:
http://murga-linux.com/puppy/viewtopic.php?t=78881
by technosaurus
Wed Jun 13, 2012 9:24 pm
Forum: LXDE Development & Programming
Topic: Applet programming
Replies: 8
Views: 13325

Re: Applet programming

It now uses inotify (via a gdk_input) so that no refresh rate is needed and also executes the left and right click commands directly. Just start her up and use any external program to modify the icons (SVG is the easiest). Your limit is your imagination #include <sys/inotify.h> #include <gtk/gtk.h> ...
by technosaurus
Fri Apr 13, 2012 6:01 am
Forum: LXDE Components
Topic: LXPanel applet with my text
Replies: 2
Views: 4408

Re: LXPanel applet with my text

nope, totally easy, just use svg and my simple icon tray (or whatever else program that does it better - if I had found one though, I never would have written it) http://www.murga-linux.com/puppy/viewtopic.php?t=76431 I have posted examples for creating more complex svg images, text only should be e...
by technosaurus
Fri Apr 13, 2012 5:56 am
Forum: LXDE Components
Topic: openbox themes with gtk colours
Replies: 3
Views: 6498

Re: openbox themes with gtk colours

this is a chunk from my jwm tools package while read LINE ; do #go through trayfile line by line case $LINE in include*/usr/share/themes*)GTKRC=${LINE#include };GTKRC=${GTKRC//\"/};break;; esac done < ${HOME}/.gtkrc-2.0 while read LINE || [ "$LINE" ]; do #go through gtkrc file line by...
by technosaurus
Fri Apr 13, 2012 5:51 am
Forum: LXDE Components
Topic: Sensor applet show always NA instead of temp
Replies: 1
Views: 3468

Re: Sensor applet show always NA instead of temp

I wrote a basic demo for displaying temps here:
http://www.murga-linux.com/puppy/viewtopic.php?t=76431
It looks in /proc/acpi/thermal_zone for temps. Do you have that?
BTW my temp applet was just to test my tray applet tool, not a full featured program or anything, so don't get your hopes up.
by technosaurus
Fri Apr 13, 2012 5:30 am
Forum: LXDE Development & Programming
Topic: Applet programming
Replies: 8
Views: 13325

Re: Applet programming

I recently developed the simplest (but still full featured) tray applet program I could and released it to the public domain (or any license approved by the open source initiative for locales that do not recognize releasing copyright to the public domain) The whole thing is designed for tray applet ...