mirror of
https://github.com/gryf/wicd.git
synced 2025-12-20 12:58:07 +01:00
Path configuration was distributed throughout wicd, making it difficult to move around project files. Centralise the configuration into wpath.py.
12 lines
213 B
Python
12 lines
213 B
Python
#!/usr/bin/python
|
|
import os
|
|
import sys
|
|
import wpath
|
|
if __name__ == '__main__':
|
|
wpath.chdir(__file__)
|
|
import gtk
|
|
if gtk.gtk_version[0] >= 2 and gtk.gtk_version[1] >= 10:
|
|
import edgy
|
|
else:
|
|
import dapper
|