~serapophis/quickly/Fixes

« back to all changes in this revision

Viewing changes to design

  • Committer: Harry Wartig
  • Date: 2010-09-28 09:19:21 UTC
  • Revision ID: hwartig@googlemail.com-20100928091921-24r6or5vqbdnnzjd
change "design" command: it now also supports the help operation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
 
1
#!/bin/bash
 
2
 
 
3
usage(){
 
4
        cat<<EOUSAGE
 
5
Usage:
 
6
        quickly design
 
7
 
 
8
Opens Glade UI editor so that you can edit the UI for dialogs
 
9
and windows in your project. 
 
10
EOUSAGE
 
11
        exit 0
 
12
}
 
13
 
 
14
# invoke  usage
 
15
# call usage() function if any argument was supplied
 
16
[[ $# -ne 0 ]] && usage
 
17
 
2
18
cd data/ui
3
19
glade *.ui