Being able to mirror and control an android device on your desktop can be quite useful. It provides the convenience of virtualization with the advantages of real hardware.

scrcpy

This application mirrors Android devices (video and audio) connected via USB or over TCP/IP, and allows to control the device with the keyboard and the mouse of the computer. It does not require any root access. It works on Linux, Windows and macOS.

shortcuts

Right-click triggers BACK
Middle-click triggers HOME
Alt+f toggles fullscreen

There are lots of shortcuts on the official docs
source: https://github.com/Genymobile/scrcpy/blob/master/doc/shortcuts.md

usage

Documentation on Github is quite extensive and detailed, this are some of the main usage examples that they provide.
Other than sharing the screen you can control the whole phone and integrate this with scripts if needed.

Capture the screen in H.265 (better quality), limit the size to 1920, limit the frame rate to 60fps, disable audio, and control the device by simulating a physical keyboard:

scrcpy --video-codec=h265 --max-size=1920 --max-fps=60 --no-audio --keyboard=uhid
scrcpy --video-codec=h265 -m1920 --max-fps=60 --no-audio -K  # short version

Start VLC in a new virtual display (separate from the device display):

scrcpy --new-display=1920x1080 --start-app=org.videolan.vlc

Record the device camera in H.265 at 1920x1080 (and microphone) to an MP4 file:

scrcpy --video-source=camera --video-codec=h265 --camera-size=1920x1080 --record=file.mp4

Capture the device front camera and expose it as a webcam on the computer (on Linux):

scrcpy --video-source=camera --camera-size=1920x1080 --camera-facing=front --v4l2-sink=/dev/video2 --no-playback

Control the device without mirroring by simulating a physical keyboard and mouse (USB debugging not required):

scrcpy --otg

Control the device using gamepad controllers plugged into the computer:

scrcpy --gamepad=uhid
scrcpy -G  # short version