| Author |
Message |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Sat 01 Sep 2012, 20:46 Post subject:
|
|
Pdesktop RemoteDesktop Client
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Wed 03 Oct 2012, 16:48 Post subject:
|
|
Icon finder
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
SFR

Joined: 26 Oct 2011 Posts: 570
|
Posted: Wed 03 Oct 2012, 17:31 Post subject:
|
|
BDraw
DTMF Player
dtmfdial GUI + Vovchik's mod
Large Files Finder
Peg Solitaire
Random Wallpaper Changer
SelfCrypText
Take a Shot!
UniMap
_________________ [O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
Last edited by SFR on Fri 22 Feb 2013, 14:41; edited 4 times in total
|
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Thu 04 Oct 2012, 18:18 Post subject:
|
|
OK, and DTMF is what's used in modern tone dialling telephones:
| Quote: | | Dual-tone multi-frequency signaling (DTMF) is used for telecommunication signaling over analog telephone lines in the voice-frequency band between telephone handsets and other communications devices and the switching center. |
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Sat 13 Oct 2012, 11:20 Post subject:
|
|
A couple more from Radky:
Pup-SysInfo - System information utility also included in PupControl Panel
PupMenu - Configurable application launcher and menu (.desktop file) editor
And he has an index at http://www.smokey01.com/radky/PupMates.html
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Sat 13 Oct 2012, 11:37 Post subject:
|
|
| thunor wrote: | LiveUSB MultiBoot
| Quote: | MultiSystem est un logiciel libre et gratuit développé sous licence GPL-V3 et écrit en bash/gtkdialog qui permet de créer des clés USB MultiBoot.
MultiSystem is free software developed under the GPL V3 and written in bash/gtkdialog for creating MultiBoot USB memory sticks.
|
Regards,
Thunor |
| 8-bit wrote: | | Maybe I am dense, but I checked the link for MultiSystem and could not find any download link for the free program. |
| puppyluvr wrote: | Hello,
The only D/L outside of apt I could find was an ISO..
587mb... That`s a lot of gtkdialog...
I didnt D/L it due to bandwidth restrictions...
If there is a demand, I could modify MultiPup to include USB I guess....Just a little dialog....  |
Try http://liveusb.info/multisystem/multisystem.tar.bz2
| Google translate wrote: | Method # 3 Directly via sources (Method for informed user of linux!)
The script is designed to be portable,
unzip and run the file in a terminal "gui_multisystem.sh" and fill out the dependencies ...
Download: http://liveusb.info/multisystem/multisystem.tar.bz2
it is imperative to have the latest version of gtkdialog> = 0.8.0
MultiSystem is free software under GPL V3-written in bash / gtkdialog. |
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
thunor

Joined: 14 Oct 2010 Posts: 342 Location: Minas Tirith, in the Pelennor Fields fighting the Easterlings
|
Posted: Tue 16 Oct 2012, 05:42 Post subject:
|
|
- Pfontview by me (maintained).
Enables the previewing of TrueType fonts whether they are installed or not. Most effective when set as default application for ttf in file manager. Includes option to show fontbutton which lists installed fonts, basically gfontsel embedded.
|
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 3843
|
Posted: Fri 19 Oct 2012, 16:18 Post subject:
|
|
I wrote most of the frontend for an Xarchive replacement, but still needs the appropriate actions and functions (backend) ... currently it only shows the contents and the buttons are grayed out (because they don't work yet) ... If anyone is interested here is the source
Note: Thunor has made some changes since I wrote this, so now it may be better to open the interface and _then_ generate/display the file list
| Code: | #!/bin/sh
GTKDIALOG=gtkdialog
case ${1} in
*.tar.*|*.tbz|*.tgz|*.txz)
VIEWCMD='busybox tar -tvf '$1'|while read LINE; do A=`echo ${LINE}`; echo "${A// /|}";done'
VIEWHDR='attr|uid/gid|size|date|time|name||link'
;;
*.zip|*.jar|*.xpi)
VIEWCMD='busybox unzip -l '$1'|while read LINE; do case $LINE in *Archive*$1|*Length*Date*Time*Name|----*---|*" "files);;*)A=`echo ${LINE}`; echo "${A// /|}";;esac done'
VIEWHDR='size|date|time|name'
;;
esac
export MAIN_DIALOG='
<window title="Xarchive2 '$1'">
<vbox>
<menubar>
<menu label="_File" use-underline="true">
<menuitem sensitive="false" stock-id="gtk-directory" label="Open"></menuitem>
<menuitem sensitive="false" stock-id="gtk-file" label="New"></menuitem>
<menuitem sensitive="false" stock-id="gtk-close"></menuitem>
<menuitemseparator></menuitemseparator>
<menuitem sensitive="false" stock-id="gtk-quit" accel-key="0x51" accel-mods="4">
<action>exit:Quit</action>
</menuitem>
</menu>
<menu use-underline="true">
<menuitem sensitive="false" stock-id="gtk-apply" label="Select All"></menuitem>
<menuitem sensitive="false" stock-id="gtk-clear" label="Unselelect All"></menuitem>
<label>_Selection</label>
</menu>
<menu use-underline="true">
<menuitem sensitive="false" stock-id="gtk-harddisk" label="Extract"></menuitem>
<menuitem sensitive="false" stock-id="gtk-execute" label="Open With"></menuitem>
<menuitem sensitive="false" stock-id="gtk-remove" label="Remove"></menuitem>
<menuitem sensitive="false" stock-id="gtk-add" label="Add"></menuitem>
<label>_Archive</label>
</menu>
<menu use-underline="true">
<menuitem sensitive="false" stock-id="gtk-help" label="Help"></menuitem>
<menuitem sensitive="false" stock-id="gtk-about" label="About"></menuitem>
<label>_Help</label>
</menu>
</menubar>
<hseparator></hseparator>
<hbox xalign="2">
<button width-request="50" image-position="2" sensitive="false">
<label>Open</label>
<input file stock="gtk-open"></input>
<action>"echo Open"</action>
</button>
<button sensitive="false" width-request="50" image-position="2">
<label>New</label>
<input file stock="gtk-new"></input>
<action>"echo New"</action>
</button>
<button sensitive="false" width-request="50" image-position="2">
<label>Close</label>
<input file stock="gtk-close"></input>
<action>"echo Close"</action>
</button>
<vseparator></vseparator>
<button sensitive="false" width-request="90" image-position="2">
<label>Select All</label>
<input file stock="gtk-apply"></input>
<action>"echo Select"</action>
</button>
<button sensitive="false" width-request="90" image-position="2">
<label>Unselect All</label>
<input file stock="gtk-clear"></input>
<action>"echo Unselect"</action>
</button>
<vseparator></vseparator>
<button sensitive="false" width-request="80" image-position="2">
<label>Extract</label>
<input file stock="gtk-harddisk"></input>
<action>"echo Extract"</action>
</button>
<button sensitive="false" width-request="80" image-position="2">
<label>Open With</label>
<input file stock="gtk-execute"></input>
<action>"echo open"</action>
</button>
<vseparator></vseparator>
<button sensitive="false" width-request="70" image-position="2">
<label>Remove</label>
<input file stock="gtk-remove"></input>
<action>"echo Remove"</action>
</button>
<button sensitive="false" width-request="70" image-position="2">
<label>Add</label>
<input file stock="gtk-add"></input>
<action>"echo Add"</action>
</button>
<vseparator></vseparator>
<button sensitive="false" image-position="2">
<label>Quit</label>
<input file stock="gtk-quit"></input>
<action>"echo quit"</action>
</button>
</hbox>
<hseparator></hseparator>
<frame '$1'>
<tree selection-mode="multiple" stock-id="gtk-file">
<label>'$VIEWHDR'</label>
<variable>SEL</variable>
<label>Items</label>
<width>300</width><height>300</height>
<input>'$VIEWCMD'</input>
</tree>
</frame>
</vbox>
<action signal="hide">exit:Exit</action>
</window>'
eval `$GTKDIALOG --program=MAIN_DIALOG`
echo $SEL |
 |
| Description |
|
| Filesize |
34.97 KB |
| Viewed |
489 Time(s) |

|
_________________ Puppy Web Desktop Now with pet packages - Pet Packaging 100 & 101
|
|
Back to top
|
|
 |
thunor

Joined: 14 Oct 2010 Posts: 342 Location: Minas Tirith, in the Pelennor Fields fighting the Easterlings
|
Posted: Sun 06 Jan 2013, 13:07 Post subject:
|
|
- Pfeme by me (maintained).
Pfeme is a front-end for multiple emulators. In other words it's a generic front-end supporting multiple profiles with just enough useful features.
|
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6178 Location: Auckland, New Zealand
|
Posted: Sat 11 May 2013, 20:11 Post subject:
|
|
PeasyDisc - a collection of basic CD/DVD tools
_________________ DEATH TO SPREADSHEETS
- - -
Classic Puppy quotes
- - -
Beware the demented serfers!
|
|
Back to top
|
|
 |
|