/gpump/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/gpump/trunk

« back to all changes in this revision

Viewing changes to src/main.js

  • Committer: Gustav Hatvigsson
  • Date: 2014-04-14 07:33:32 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140414073332-eagun3d8y56k3dtd
* Switched to GKeyFile instead of GSettings, for the time being.

** This is untested code **

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/gjs
2
 
 
3
 
 
4
 
imports.searchPath.unshift('.', './src/');
5
 
const Application = imports.app;
6
 
 
7
 
function main (argv) {
8
 
  var app = new Application.Application ();
9
 
  return app.run(argv);
10
 
}
11
 
 
12
 
main (ARGV);