A workaround way is as following. Run both these command:
gnome-screensaver-command -l && gsettings set org.gnome.desktop.session idle-delay 1
This gsettings set org.gnome.desktop.session idle-delay 1
command sets your screen time if it's inactive(1 second) but you need to create a Custom Shortcut and one shortcut key for that with gsettings set org.gnome.desktop.session idle-delay 60
(inactive for 1 minute) value to disable that feature because it turns off your screen if you have inactive for 1 second ;)

Useful link:
Turn off monitor using command line
Also if you used this solution, you can define a shortcut key for that to turning on again. But sudo
needs to enter password then you can remove password for that command HOW To?
You can configure your system that sudo someCommand
does not require a password(in our case for sudo
).
To do that, run sudo visudo
and add the following line at the END in the file that opens:
Your_USERNAME ALL=NOPASSWD: /usr/sbin/vbetool
Then exit the editor and save it (CTRL+x).
Now you can use gnome-screensaver-command -l && sudo vbetool dpms off
command from the command line or in your script without password. And define a shortcut key like sudo vbetool dpms on
to turning on it.