Remove obsolete stuff, get rid of the tools dir.
This commit is contained in:
parent
94f36e8b7d
commit
faeb35347f
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
result = 'colors = [\n'
|
|
||||||
|
|
||||||
hex_file = open(sys.argv[1], 'r')
|
|
||||||
|
|
||||||
for line in hex_file.readlines():
|
|
||||||
[ stroke, fill ] = line.split()
|
|
||||||
result += '[\'#%s\', \'#%s\'], \\\n' % (fill, stroke)
|
|
||||||
|
|
||||||
result += ']'
|
|
||||||
|
|
||||||
hex_file.close()
|
|
||||||
|
|
||||||
print result
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
result = '_nick_names = [\n'
|
|
||||||
|
|
||||||
nicks_file = open(sys.argv[1], 'r')
|
|
||||||
|
|
||||||
for line in nicks_file.readlines():
|
|
||||||
name = line.strip()
|
|
||||||
result += '\'%s\', ' % (name)
|
|
||||||
|
|
||||||
result += ']'
|
|
||||||
|
|
||||||
nicks_file.close()
|
|
||||||
|
|
||||||
print result
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
PREFIX=/usr
|
|
||||||
|
|
||||||
KBD_CONF=$PREFIX/share/sugar/kbdconfig
|
|
||||||
DBUS_CONF=$PREFIX/share/sugar/dbus-installed.conf
|
|
||||||
|
|
||||||
matchbox-window-manager -kbdconfig $KBD_CONF -use_titlebar no -theme olpc &
|
|
||||||
exec dbus-launch --exit-with-session --config-file $DBUS_CONF sugar-shell
|
|
Loading…
Reference in New Issue
Block a user