12 lines
382 B
Bash
Executable File
12 lines
382 B
Bash
Executable File
#!/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
|