add scripts for managing sms on pinephone

This commit is contained in:
2021-03-15 02:17:29 -05:00
parent 650dba86b9
commit 5dd15d255b
4 changed files with 33 additions and 0 deletions

4
sms/list_sms Normal file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env python3
from sms import get_sms
for sms in get_sms():
print(sms)