Index of programs using gtkdialog

For groups of packages that don't all fall under the same category
Message
Author
disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#31 Post by disciple »

Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#32 Post by disciple »

Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
SFR
Posts: 1800
Joined: Wed 26 Oct 2011, 21:52

#33 Post by SFR »

Last edited by SFR on Wed 09 Oct 2013, 13:32, edited 6 times in total.
[color=red][size=75][O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource[/size][/color]
[b][color=green]Omnia mea mecum porto.[/color][/b]

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#34 Post 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.
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#35 Post 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
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#36 Post 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.
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
thunor
Posts: 350
Joined: Thu 14 Oct 2010, 15:24
Location: Minas Tirith, in the Pelennor Fields fighting the Easterlings
Contact:

#37 Post 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.

User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#38 Post 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
Attachments
xarchive2.png
(34.97 KiB) Downloaded 2180 times
Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

User avatar
thunor
Posts: 350
Joined: Thu 14 Oct 2010, 15:24
Location: Minas Tirith, in the Pelennor Fields fighting the Easterlings
Contact:

#39 Post 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.

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#40 Post by disciple »

PeasyDisc - a collection of basic CD/DVD tools
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#41 Post by disciple »

Peasymp3 - mp3 player
Peasyglue - joins image files together
peasyprint - Graphic/Photo Printing
PeasyPort - Network Scanner
PeasyScale - JPEG Image Resizer
PeasyP2J and PeasyP2P - virtual JPEG and PNG printers. [Obsolete - merged into Peasypdf]
Peasyscan - Image Scanner Program
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#42 Post by disciple »

Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
dejan555
Posts: 2798
Joined: Sun 30 Nov 2008, 11:57
Location: Montenegro
Contact:

#43 Post by dejan555 »

Simple GTK Radio - mplayer frontend for radio streams
puppy.b0x.me stuff mirrored [url=https://drive.google.com/open?id=0B_Mb589v0iCXNnhSZWRwd3R2UWs]HERE[/url] or [url=http://archive.org/details/Puppy_Linux_puppy.b0x.me_mirror]HERE[/url]

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#44 Post by disciple »

ROhms - Program to calculate resistors by colour codes
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

Puppy units

#45 Post by don570 »

PuppyUnits-1.7.pet
A program to convert between common units.
Useful for students.


_______________________________________________

User avatar
Puppus Dogfellow
Posts: 1667
Joined: Tue 08 Jan 2013, 01:39
Location: nyc

#46 Post by Puppus Dogfellow »


User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#47 Post by greengeek »

This is a handy list. Just getting it on my watchlist...

Pelo

pcdripper-3.9.3

#48 Post by Pelo »

pCDripper no more developed... included Vividpup. version 3.9.3
pcdripper-3.9.3|pcdripper|3.9.3||Multimedia|96K||pcdripper-3.9.3.pet|+xdialog,+gtkdialog,+cdrkit|Audio CD song ripper||||

I find this topic worth of interest. Many of these little apps are unknown by users, and by me.
pgtkmenu - a simple program launcher that reads your .desktop files
:shock: I will check deeper. Musher0 has done a similar script (echinus)

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#49 Post by don570 »

I'm not sure if this is free but it's listed on sourceforge???
https://sourceforge.net/projects/multisystem/files/iso/

________________________

Pelo

Create your LiveUSB MultiBoot simply

#50 Post by Pelo »

Don 570,
multisystem
Create your LiveUSB MultiBoot simply. That should be free.

Post Reply