use patched version of alot
This commit is contained in:
parent
d6114aa753
commit
53f8a8050c
@ -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
12
local/bin/alot
Executable 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')()
|
||||
)
|
Loading…
Reference in New Issue
Block a user