1. Ubuntu下自由截图
Ubuntu下使用PrintScreen按键可以截取整个屏幕,但是很多时候并不需要那么多内容,还需要对图片进行编辑。
这时候就需要截图时,有矩形选择,更符合要求。
进入System Settings...->Keyboard->Shortcuts,然后选择Custom Shortcuts即可创建自定义的快捷键。
点击“+”,然后在弹出的窗口输入Name和Command如下,最后点击Disabled同时按下想要的快捷键,比如Shift+Ctrl+A。
结果变成如下。只要按下组合快捷键,那么鼠标就会变成十字形,即可选择自己想要的截图区域。
其实原因也很简单,gnome-screenshot -h即可知道。
Usage:
gnome-screenshot [OPTION...]Help Options:
-h, --help Show help options
--help-all Show all help options
--help-gapplication Show GApplication options
--help-gtk Show GTK+ OptionsApplication Options:
-c, --clipboard Send the grab directly to the clipboard-----------------------------------直接保存到剪切板,避免弹出框选择。
-w, --window Grab a window instead of the entire screen
-a, --area Grab an area of the screen instead of the entire screen---------------保存选择区域。
...
原文地址:https://www.cnblogs.com/arnoldlu/p/9219100.html