Page 2 of 4

Posted: Tue 29 Nov 2011, 00:06
by thunor
@vaisarger: Cheers and nice application :)

- PlayMusic by me (maintained)

Regards,
Thunor

Posted: Sun 11 Dec 2011, 23:51
by disciple

Posted: Tue 24 Jan 2012, 07:27
by jpeps

Posted: Wed 22 Feb 2012, 10:17
by 01micko
Screeny - screen capture utility, new

Posted: Thu 23 Feb 2012, 01:51
by technosaurus
thunor wrote:We definitely need to add some more games to this list though ;)
Did someone post an example on how to move "sprites" ... AFAIK this would need the positional packer (i forget the widget name) that is not a supported container

Posted: Thu 08 Mar 2012, 12:59
by rhadon
WallRefresh-1.0, uses a Picture from the Web for a Wallper and refreshes it periodically.
(my first attempt with gtkdialog :oops: )

Have fun,
Rolf

Posted: Wed 21 Mar 2012, 05:38
by disciple
jwm_app_tray - creates/configures a JWM tray with program launchers.
2Palt (application launch tray) - the same idea again, but "more polished"; and 2Ps2d (shortcuts to desktop) - configure desktop shortcuts.
Note that jpeps' "TrayManager" (above) apparently manages program launchers in the main JWM tray, whereas these apps create a second tray just for program launchers.

Posted: Sat 24 Mar 2012, 22:40
by disciple

Posted: Wed 15 Aug 2012, 04:03
by disciple

Posted: Thu 30 Aug 2012, 00:18
by disciple
Zigbert has a modified version of Pmount at http://murga-linux.com/puppy/viewtopic. ... 165#619165, and I guess there are expected to be more things added to that thread.

Posted: Sun 02 Sep 2012, 00:46
by disciple

Posted: Wed 03 Oct 2012, 20:48
by disciple

Posted: Wed 03 Oct 2012, 21:31
by SFR

Posted: Thu 04 Oct 2012, 22:18
by disciple
OK, and DTMF is what's used in modern tone dialling telephones:
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.

Posted: Sat 13 Oct 2012, 15:20
by disciple
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

Posted: Sat 13 Oct 2012, 15:37
by disciple
thunor wrote:LiveUSB MultiBoot

Image
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::D Hello,
The only D/L outside of apt I could find was an ISO..
587mb... That`s a lot of gtkdialog... :shock:
I didnt D/L it due to bandwidth restrictions... :twisted:

If there is a demand, I could modify MultiPup to include USB I guess....Just a little dialog.... 8)
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.

Posted: Tue 16 Oct 2012, 09:42
by thunor
- 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.

Posted: Fri 19 Oct 2012, 20:18
by technosaurus
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: Select all

#!/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

Posted: Sun 06 Jan 2013, 17:07
by thunor
- 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.

Posted: Sun 12 May 2013, 00:11
by disciple
PeasyDisc - a collection of basic CD/DVD tools