2022년 3월 24일 목요일

Keyboard shortcut for taking selected area screenshot in Mint 20.04

 

Keyboard shortcut for taking selected area screenshot in Mint 20.04

 
Mate 20 does not have a keybinding for a partial screen print.
You can make one yourself.

In a terminal window type:

Code: Select all

mate-keybinding-properties
This will give you the keyboard shortcut window.

Click the add button.
Choose a name like 'partial screenprint'
Copy the following line to the command field:

Code: Select all

bash -c "sleep 0.2; mate-screenshot -a"
Click apply.

Your key is now defined but it is still disabled.
Double click on the word disabled behind your key and enter your preferred key combination. I would suggest ctrl-prtscr as shift-prtscr is already taken.

Click close and you are done.

sublime close without confirmation

  Close without confirm   Yes, you can just write a plugin to set the view as scratch and close it. Then create a keybinding for that c...