use patched version of alot

This commit is contained in:
Felix Van der Jeugt 2018-02-26 11:59:45 +01:00
parent d6114aa753
commit 53f8a8050c
No known key found for this signature in database
GPG Key ID: 58B209295023754D
2 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,7 @@ periodic_hook_frequency = 60
attachment_prefix = /data/temporary
prefer_plaintext = True
editor_cmd = "st -e vis"
[accounts]
@ -55,3 +56,4 @@ prefer_plaintext = True
[[thread]]
a = tag archived ; fold
A = untag archived ; unfold
n = nextctype

12
local/bin/alot Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python2
# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.7.0.dev0','console_scripts','alot'
__requires__ = 'alot==0.7.0.dev0'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('alot==0.7.0.dev0', 'console_scripts', 'alot')()
)