

Automatics also allow for engine braking. From a quick search, it sounds like a toss-up as to whether that triggers brake lights. Regardless, the article mentions the benefit is not only from cars slowing down, but also from indicating that a car is preparing to stop or “that a stationary vehicle might initiate movement”. Neither of those can be done by an engine brake, so front brake lights would still have a benefit even with a driver that likes engine braking.
I used to have scripts like that, but eventually switched to ssh aliases. You can set up an alias for each machine in
~/.ssh/config
with lines like this:Host p1 HostName 192.168.1.123 Port 22 User pi
Then access with
ssh p1
. Slightly more typing, but avoids adding more commands to your $PATH. Also has the benefit of letting you use the same alias with other ssh-related commands like sftp.