Line lengths

main
Bob Mottram 2021-03-16 23:14:34 +00:00
parent fb8cbea12d
commit 2e019f52ab
1 changed files with 40 additions and 20 deletions

View File

@ -40,28 +40,48 @@ from pgp import pgpEncryptToActor
def _desktopHelp() -> None: def _desktopHelp() -> None:
"""Shows help """Shows help
""" """
indent = ' '
print('') print('')
print('Commands:') print(indent + 'Commands:')
print('') print('')
print('quit Exit from the notification client') print(indent + 'quit ' +
print('show dm|sent|inbox|replies Show a timeline') 'Exit from the notification client')
print('mute Turn off the screen reader') print(indent + 'show dm|sent|inbox|replies ' +
print('speak Turn on the screen reader') 'Show a timeline')
print('sounds on Turn on notification sounds') print(indent + 'mute ' +
print('sounds off Turn off notification sounds') 'Turn off the screen reader')
print('rp Repeat the last post') print(indent + 'speak ' +
print('like Like the last post') 'Turn on the screen reader')
print('unlike Unlike the last post') print(indent + 'sounds on ' +
print('reply Reply to the last post') 'Turn on notification sounds')
print('post Create a new post') print(indent + 'sounds off ' +
print('post to [handle] Create a new direct message') 'Turn off notification sounds')
print('announce/boost Boost the last post') print(indent + 'rp ' +
print('follow [handle] Make a follow request') 'Repeat the last post')
print('unfollow [handle] Stop following the give handle') print(indent + 'like ' +
print('next Next page in the timeline') 'Like the last post')
print('prev Previous page in the timeline') print(indent + 'unlike ' +
print('read [post number] Read a post from a timeline') 'Unlike the last post')
print('open [post number] Open web links within a timeline post') print(indent + 'reply ' +
'Reply to the last post')
print(indent + 'post ' +
'Create a new post')
print(indent + 'post to [handle] ' +
'Create a new direct message')
print(indent + 'announce/boost ' +
'Boost the last post')
print(indent + 'follow [handle] ' +
'Make a follow request')
print(indent + 'unfollow [handle] ' +
'Stop following the give handle')
print(indent + 'next ' +
'Next page in the timeline')
print(indent + 'prev ' +
'Previous page in the timeline')
print(indent + 'read [post number] ' +
'Read a post from a timeline')
print(indent + 'open [post number] ' +
'Open web links within a timeline post')
print('') print('')