Tiny < 100b Apps - text editor, image viewer, calendar....

Stuff that has yet to be sorted into a category.
Message
Author
User avatar
Geoffrey
Posts: 2355
Joined: Sun 30 May 2010, 08:42
Location: Queensland

#21 Post by Geoffrey »

Yad image viewer 97bytes

Needs a recent version of yad for the " --buttons-layout center " to work, just delete that if it doesn't.

Code: Select all

#!/bin/sh
yad --title 'Yad Ꙭ' --window-icon $1 --image $1 --buttons-layout center --button=Quit
Usage: yad-view image file
Attachments
yad-view.gz
Fake gz
(97 Bytes) Downloaded 241 times
yad-view.jpg
(19.62 KiB) Downloaded 285 times
Last edited by Geoffrey on Sun 01 Feb 2015, 22:27, edited 1 time in total.
[b]Carolina:[/b] [url=http://smokey01.com/carolina/pages/recent-repo.html]Recent Repository Additions[/url]
[img]https://dl.dropboxusercontent.com/s/ahfade8q4def1lq/signbot.gif[/img]

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

#22 Post by dejan555 »

Calculator in Xdialog using bc:

Code: Select all

f=0;while [ "$f" != "" ];do f=$(Xdialog --title Calculator --inputbox "Enter formula:" 0 0 "$f" 2>&1);[ "$f" != "" ] && f=$(echo "scale=2;$f" | bc);done
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

#23 Post by disciple »

That's incredibly pointless - much better just to use bc in a terminal! :)
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

Post Reply