之前我一直在使用 ubuntu ,由于电脑性能问题不得不切换使用。有没有办法以前我从下面的 ubuntu 线程中将 gnome-print-screen 选项替换为 shutter 编辑选项。正在寻找适用于 Lubuntu 的相同选项。
在 ubuntu 14.10 中用 shutter 编辑屏幕或至少 shutter 主屏幕替换 gnome-screenshot 保存选项?
不确定如何在 Lubuntu 15.04 中执行相同操作。 ?这可行吗,还是我必须接受默认选项阴囊当我按下 printscreen 时,图像会静默保存在目录中,没有任何弹出窗口或屏幕。
答案1
以下是在 Lubuntu 中更改键盘快捷键的方法https://help.ubuntu.com/community/Lubuntu/Keyboard#Create_New_Keyboard_shortcuts
在您最喜欢的编辑器中打开lubuntu-rc.xml
..(我的是 vim,可能是 leafpad/vi/nano)
`sudo vim ~/.config/openbox/lubuntu-rc.xml`
然后找到以下代码..
<keybind key="Print">
<action name="Execute">
<command>lxsession-default screenshot</command>
</action>
</keybind>
注释掉 <command>lxsession-default screenshot</command>
并添加<command>shutter -f</command>
..(或者你也可以替换,而不是注释,但我更喜欢这样做)
<keybind key="Print">
<action name="Execute">
<!-- <command>lxsession-default screenshot</command> -->
<command>shutter -f</command>
</action>
</keybind>
并且您还可以通过以下方式更改为此快门 -a 来替换(Alt + Print)选项。
<keybind key="A-Print">
<action name="Execute">
<!--<command>lxsession-default screenshot window</command> -->
<command>shutter -a</command>
</action>
</keybind>
然后重新加载openbox
openbox --reconfigure
其余相同这
然后打开快门并进入菜单(Edit--->preference--->main
)选择不自动保存文件
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
此时,您可以通过按下 Printscreen 按钮或 Alt + Printscreen 按钮进入主屏幕。 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
打开编辑窗口,而不是主屏幕,按下 Printscreen 按钮或 Alt + Printscreen 按钮时,转到首选项中的操作并选择使用内置编辑器打开
并确保行为部分中的其他设置保持如下,
完毕!!