Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the easiest way (language, tools, etc) to write quick-n-dirty ad-hoc GUI apps in Linux? [closed]

For example to create a simple form with couple of controls, doing some simple logic on them, generating a shell command or a web service call and executing it here and now, assuming that it is going to be no tomorrow for this application, no unexpected things can occur to be handled, computer resources are unlimited, etc. The code'd be compact and readable, everything'd fit in 1-2 files, better no special project/solution/makefile at all.

like image 966
Ivan Avatar asked Jun 26 '10 04:06

Ivan


2 Answers

One way would be using Tool Command Language. It supports rapid prototyping, scripted applications, GUIs and testing.

like image 71
Igor Popov Avatar answered Sep 23 '22 20:09

Igor Popov


Python with Gtk is easy to use.

like image 37
Yann Ramin Avatar answered Sep 22 '22 20:09

Yann Ramin