blob: 1ccf5f02c4a87ab0df66ff3825d20408e3f47b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# tiddlywiki launcher
#
# Version: 0.2
# Author: Alexander F Rødseth <xyproto@archlinux.org>
# Modified: 2018-04-05
# License: MIT
#
from sys import argv
from os.path import join, exists
from os import mkdir, system, environ
def main():
arguments = argv[1:]
if arguments:
where = arguments[0]
else:
where = join(environ['HOME'], '.tiddlywiki')
goal = join(where, 'index.html')
if not exists(where):
mkdir(where)
system('cp /usr/share/tiddlywiki/empty.html %s' % (goal))
if ('BROWSER' in environ) and environ['BROWSER']:
system(environ['BROWSER'] + " " + goal)
else:
system("/usr/bin/xdg-open " + goal)
if __name__ == "__main__":
main()
|