fix notifier formatting
This commit is contained in:
parent
8e1eaa2b42
commit
fe36b87c57
2 changed files with 20 additions and 17 deletions
|
@ -1,9 +1,17 @@
|
||||||
'''
|
"""Onionr - Private P2P Communication.
|
||||||
Onionr - Private P2P Communication
|
|
||||||
|
|
||||||
Desktop notification wrapper
|
Desktop notification wrapper
|
||||||
'''
|
"""
|
||||||
'''
|
try:
|
||||||
|
import simplenotifications as simplenotify
|
||||||
|
except ImportError:
|
||||||
|
notifications_enabled = False
|
||||||
|
else:
|
||||||
|
notifications_enabled = True
|
||||||
|
|
||||||
|
import config
|
||||||
|
|
||||||
|
"""
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
@ -16,19 +24,14 @@
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
'''
|
"""
|
||||||
try:
|
|
||||||
import simplenotifications as simplenotify
|
if not config.get('general.show_notifications', True):
|
||||||
except ImportError:
|
|
||||||
notifications_enabled = False
|
notifications_enabled = False
|
||||||
else:
|
|
||||||
notifications_enabled = True
|
|
||||||
|
|
||||||
import config
|
|
||||||
|
|
||||||
if not config.get('general.show_notifications', True): notifications_enabled = False
|
|
||||||
|
|
||||||
def notify(title: str = "Onionr", message: str = ""):
|
def notify(title: str = "Onionr", message: str = ""):
|
||||||
"""cross platform method to show a notification"""
|
"""Cross platform method to show a notification."""
|
||||||
if not notifications_enabled: return
|
if not notifications_enabled:
|
||||||
|
return
|
||||||
simplenotify.notify(title, message)
|
simplenotify.notify(title, message)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1580787293
|
1580847482
|
Loading…
Reference in a new issue