我有一个自定义 nemo 操作,如下所述:
https://wiki.archlinux.org/index.php/Nemo#Nemo_Actions

如何为此操作添加快捷方式?

(如果可以在 ~/.gnome2/accels/nemo 中添加一行,那么我有一个额外的问题,即在我的系统上,每次重新启动时都会自动生成此文件,因此在此处编辑内容无济于事。我有 Cinnamon 3.2.7 和 nemo 3.2.2 .)

有什么建议么?提前致谢! :)

最佳答案

Nemo Action

首先,您应该将 myaction.nemo_action 放在 ~/.local/share/nemo/actions/ 下。

然后,要进行击键,请在您想要的字母前放置一个下划线 _。例如在 Hello _Shortcut 中,s 是关键。因此,您按右键单击,然后按 s

Bellow 是我使用 Atom 打开文件和目录的操作示例:

# Custom action for Nemo File Manager for Cinnamon.
# Adds right-click open file/files or directory with Atom.
# Place it under: ~/.local/share/nemo/actions/atom.nemo_action
# For more info: https://github.com/linuxmint/nemo/blob/master/files/usr/share/nemo/actions/sample.nemo_action

[Nemo Action]
Active=true
Name=Open in _Atom
Comment=Open %F in Atom
Exec=atom %F
Icon-Name=atom
Selection=any
Extensions=any;
Dependencies=atom;
Quote=double

全局快捷方式

如果您想要全局快捷方式,您应该使用 Keyboard 下的 Cinnamon System settings 设置,转到第二个选项卡并添加您的自定义快捷方式。
或者,如果您更喜欢对 CLI 进行更多控制,则可以使用 dconf 。例如波纹管配置会添加快捷方式Shift><Alt>a
/org/cinnamon/desktop/keybindings/custom-keybindings/custom0/name
  'Open Atom'
/org/cinnamon/desktop/keybindings/custom-keybindings/custom0/command
  'atom'
/org/cinnamon/desktop/keybindings/custom-keybindings/custom0/binding
  ['<Shift><Alt>a']
/org/cinnamon/desktop/keybindings/custom-list
  ['custom0']

关于cinnamon - 如何为自定义 nemo 操作添加键盘快捷键?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41381003/

10-09 16:54