如何在 kde 中以编程方式设置键绑定方案
我正在为 kde 制作一个自动配置脚本,我想用我自己的键绑定文件替换当前的键绑定。
我发现 /usr/share/apps/kcmkeys 目录中有一个键绑定文件列表,全部存储在 .kksrc 文件中,并且我可以在 ~/.kde/share/apps/kcmkeys 目录中定义自定义 .kksrc 文件。 但是,我不知道如何设置 kde 自动加载这些方案之一。
要更改为使用这些键绑定文件之一,我必须手动运行
kcmshell keys
然后使用 gui 将“当前方案”更改为这些文件之一。 有没有办法从命令行执行此操作?
I'm making a automatic configuration script for kde and I want to replace the current keybindings with a key binding file of my own.
I found that there is a list of keybinding files in /usr/share/apps/kcmkeys directory all stored in .kksrc files, and I can define custom .kksrc files in ~/.kde/share/apps/kcmkeys directory. However, I don't know how to set kde to load one of these schemes automatically.
To change to use one of these key binding files, I have to manually run
kcmshell keys
Then change the "Current Scheme" to one of these files using the gui. Is there a way to do this from the command line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
nvm,我找到了一种无需使用这些文件即可完成此操作的方法。
/etc/kde3/kdeglobals 有一个覆盖 kcmkey 的全局键绑定列表,因此我可以修改该文件。
nvm, I found a way to do this without using those files.
/etc/kde3/kdeglobals has a list of global keybindings that override the kcmkeys, so I can just modify that file.