add scripts for managing sms on pinephone
This commit is contained in:
8
sms/clear_sms
Normal file
8
sms/clear_sms
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
from sms import get_sms
|
||||
from subprocess import call
|
||||
from os.path import basename
|
||||
|
||||
for sms in get_sms():
|
||||
print(sms)
|
||||
call(["mmcli", "-m", "any", "--messaging-delete-sms", sms[0]])
|
Reference in New Issue
Block a user