当我尝试在“ scrot -s”执行过程中放置快捷方式时,什么也没有发生。
当我仅使用“ scrot”屏幕快照时,将其截取并保存到必要的目录中,但是当我使用“ scrot -s”应该弹出选择光标时,则什么也没有发生。
我试图同时使用awful.spawn和awful.spawn.with_shell
awful.key({ modkey, }, "Print",
function()
awful.spawn.with_shell("scrot -s")
end, { description = "take screenshot", group =
"launcher" })
最佳答案
将您的热键绑定到sleep 0.2 && scrot -s
,它将起作用。 The problem seems to be,即窗口管理器释放键盘的速度不足以使scrot能够抓住它(等待中止信号)。
关于linux - 从真棒wm运行scrot -s,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57101671/