I’m going to assume you’re not kidding, in which case, no, I mean the first letter of the command name it was called by.
There are already commands that do this. For example, on my machine, ex is the head of a symlink chain that leads to the vim text editor’s executable and if I run ex, vim will know that it was started with the name ex and will start in ex mode. ex was an editor that worked in a different way but was vim’s ancestor, so backwards compatibility is built right in for those strange people who love ex, (or have some kind of automation reliance on it being present).
Usually, the main command has a command line option that achieves the same effect as the special name. Here, vim -e is the less clever way to start vim in ex mode.
For yes, symlinking the name no to it and then calling that should arguably cause it to print n repeatedly, but it doesn’t, for historical reasons, hence my suggestion to go back in time and make it act differently.
(None of this touches on the fact that the GNU philosophy wants nothing to do with clever tricks like this. They prefer to compile separate executables for each and every use case. For example, most Linuxes have dir and vdir as variants of the ls command. Their functionality could have been implemented through this symlink trick, but instead there are three near-identical executables taking up space instead.)



I never had screen tearing with NVIDIA under Mint, but for AMD I found that something needs to be added to the Xorg configuration to turn screen tearing off.
I suspect the default is so as not to limit the graphics in any way, but I can’t imagine the majority of users want it that way around, so I’m a little confused by that choice.
This website has instructions on how to fix it for Ubuntu, but I can confirm it works in LMDE too, so I assume it works across the Debian family if not elsewhere: https://davejansen.com/quick-how-to-fix-screen-tearing-in-ubuntu-with-amd-gpus/