Wed, 05 Dec 2018 08:27:35 -0500
screenshot, typofixes
README.md | file | annotate | diff | comparison | revisions | |
borgend/repository.py | file | annotate | diff | comparison | revisions | |
media/screenshot.png | file | annotate | diff | comparison | revisions |
--- a/README.md Tue Sep 18 19:09:16 2018 -0500 +++ b/README.md Wed Dec 05 08:27:35 2018 -0500 @@ -1,6 +1,8 @@ # Borgend -This is a retrying and queuing scheduler as well as a macOS tray icon for +![screenshot](media/screenshot.png) + +Borgend is a retrying and queuing scheduler as well as a macOS tray icon for [BorgBackup](https://borgbackup.readthedocs.io/en/stable/). If you are not on macOS, no tray icon will be displayed, but you can still use Borgend as a scheduler. @@ -57,8 +59,8 @@ The app hould be placed under `dist/`. Copy it to your `Applications` directory, and set it up to launch on login. -If you are keen on wasting your life, you can try to run py2app without `-A` -option to create a standalone app that you can copy to computers without +If you are keen on wasting your life, you can try to run py2app without the +`-A` option to create a standalone app that you can copy to computers without Python installed, but it will probably most likely not work because py2app is shit. Currently (2018-09-18) it is not working with the keyring package.
--- a/borgend/repository.py Tue Sep 18 19:09:16 2018 -0500 +++ b/borgend/repository.py Wed Dec 05 08:27:35 2018 -0500 @@ -7,7 +7,7 @@ import os env=os.environ.copy() if '_PY2APP_LAUNCHED_' in env: - # Horrible hack to make keyring work the shit knownas py2app. + # Horrible hack to make keyring work with the shit known as py2app. from keyring.backends.OS_X import Keyring import keyring keyring.set_keyring(Keyring())