diff options
author | Adam Spragg <adam@spra.gg> | 2022-03-17 16:53:26 +0000 |
---|---|---|
committer | Adam Spragg <adam@spra.gg> | 2022-03-17 16:53:26 +0000 |
commit | cdec9ddfeb168861f92a202d77b711b4e096c63f (patch) | |
tree | 1d5f95b8da5e270b84aba7c6cd86805fcaa1eb36 | |
parent | 643ac6a4815af8bd2dd06c12d3feed492b64c327 (diff) |
Clarify desktop notification text
The notification is supposed to read "Reboot when it is convenient - to
install the updates", but I kept reading it as "Reboot - when it is
convenient to install the updates.", and I couldn't figure out the
"correct" punctuation to do that while remaining proper English. So move
the wording about instead.
-rwxr-xr-x | adu-download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adu-download b/adu-download index 7005592..c97d6e8 100755 --- a/adu-download +++ b/adu-download @@ -47,7 +47,7 @@ if command -v notify-send >/dev/null; then runuser -u "$(stat -c "%U" "$addr")" -- \ notify-send --app-name=apt-desktop-upgrades \ "$upgrades system updates available" \ - "Reboot when it is convenient to install them" + "To install them, reboot when it is convenient" done fi |