LICENSE.orig - thinglaunch - A simple command and password promtper for X11. | |
git clone git://bitreich.org/thinglaunch | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
LICENSE.orig (1849B) | |
--- | |
1 /* This program is a quick little launcher program for X. | |
2 * | |
3 * You run the program, it grabs the display (hopefully nothing else has… | |
4 * grabbed), and you type what you want to run. The styling is minimalis… | |
5 * | |
6 * (c) 2003 Matt Johnston | |
7 * matt (at) ucc.asn.au | |
8 * | |
9 * Compile it with | |
10 * cc thinglaunch.c -o thinglaunch -lX11 -L/usr/X11R6/lib -lpthread | |
11 * (works for Linux and OSF/1 anyway, for static you might need -ldl, an… | |
12 * mightn't need -lpthread.) | |
13 * | |
14 * This program can be freely distributed in source or binary form, unde… | |
15 * quite permissive license. See the bottom of this file for the full li… | |
16 * If that license is too restrictive, mail me and you can choose anothe… | |
17 * | |
18 * $Id: thinglaunch.c,v 1.8 2004/09/20 14:27:48 matt Exp $ | |
19 */ | |
20 /* | |
21 Copyright (c) 2003 Matt Johnston | |
22 All rights reserved. | |
23 | |
24 Permission is hereby granted, free of charge, to any person obtaining a … | |
25 of this software and associated documentation files (the "Software"), to… | |
26 in the Software without restriction, including without limitation the ri… | |
27 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
28 copies of the Software, and to permit persons to whom the Software is | |
29 furnished to do so, subject to the following conditions: | |
30 | |
31 The above copyright notice and this permission notice shall be included … | |
32 copies or substantial portions of the Software. | |
33 | |
34 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS … | |
35 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
36 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL … | |
37 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
38 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING … | |
39 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS I… | |
40 SOFTWARE. | |
41 */ |