Sprinterfreak
8d64c39019
* Added configuration support * Drop identical notifications * Provide install routine for pip
20 lines
366 B
Python
Executable File
20 lines
366 B
Python
Executable File
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# vim: ts=4 sw=4 sts=4 et
|
|
#
|
|
# galeranotify - python module wrapper
|
|
#
|
|
# Copyright (c) Jan-Jonas Sämann <sprinterfreak@binary-kitchen.de>, 2019
|
|
# available under the ISC licence
|
|
|
|
import galeranotify
|
|
|
|
if __name__ == '__main__':
|
|
galeranotify.main()
|
|
|
|
import galeranotify
|
|
|
|
if __name__ == '__main__':
|
|
galeranotify.main()
|
|
|