mirror of
https://github.com/gryf/wmdocklib.git
synced 2025-12-19 04:20:17 +01:00
separated the library part from the application part. added wmoo module. added pywmoonop (object oriented form of the empty dock).
17 lines
278 B
Python
Executable File
17 lines
278 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""pywmoonop.py
|
|
|
|
object oriented WindowMaker dockapp doing nothing
|
|
|
|
Copyright (C) 2007 Mario Frasca
|
|
|
|
Licensed under the GNU General Public License.
|
|
"""
|
|
|
|
from wmdocklib import wmoo
|
|
thisapp = wmoo.Application()
|
|
|
|
if __name__ == '__main__':
|
|
thisapp.run()
|