Nemo - 如何从命令行重新加载桌面?


0

我想知道我可以使用哪个命令从我的终端重新加载Nemo文件管理器。我希望获得与在桌面上按F5键完全相同的行为。

有人知道该怎么办吗?

Answers:


0

xdotool 是一个很棒的程序,用于从命令行执行gui任务。

你可以这样做:

xdotool search --class nemo windowactivate%@ key F5

它将使用类nemo搜索窗口,激活它们并发送 F5 给他们。


谢谢你的回答。我发现了这个,但我想得到原生的东西。
Booteille

0

你可以通过关闭nemo&重新启动它。

nemo -q # Stop nemo
nemo --no-default-window &> /dev/null & # Start nemo without opening a new window and send output to /dev/null
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.