You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
382 B
12 lines
382 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Wrapper for Jenky MMS (https://git.sr.ht/~amindfv/jmms)
|
||
|
# Until MMS is natively supported in mobile Linux, this command
|
||
|
# will use jmms to read your pending MMS messages. For this to
|
||
|
# work the WiFi needs switched off as only the 4G LTE connection
|
||
|
# has authentication to read from (T-Mobile's) servers.
|
||
|
|
||
|
sudo nmcli radio wifi off
|
||
|
jmms --get
|
||
|
sudo nmcli radio wifi on
|