summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-04-11 20:14:51 +0100
committerLars Wirzenius <liw@liw.fi>2013-04-11 20:14:51 +0100
commitaa2aeb3254a890c74d3d684356ca6c1a0afebb87 (patch)
tree4a961439ef8abb909f3a7860d5110217185f3d3e
parent57e505641f4afb5d557a3bf8d35f482cbf55b306 (diff)
downloaddesktop-cronish-aa2aeb3254a890c74d3d684356ca6c1a0afebb87.tar.gz
Add placeholder script
-rwxr-xr-xdesktop-cronish29
1 files changed, 29 insertions, 0 deletions
diff --git a/desktop-cronish b/desktop-cronish
new file mode 100755
index 0000000..c9550ee
--- /dev/null
+++ b/desktop-cronish
@@ -0,0 +1,29 @@
+#!/usr/bin/python
+# Copyright 2013 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+import cliapp
+
+
+__version__ = '0.0'
+
+
+class DesktopCronish(cliapp.Application):
+
+ pass
+
+
+DesktopCronish(version=__version__).run()