我想将自定义语音笔记与一组特定的键绑定,我做了一些研究,但大多数答案都是关于如何键绑定操作。我想知道是否可以将自定义语音注释键绑定到一组特定的键?
我想在哪里创建一个自定义键绑定
i - up arrow
j - left arrow
k - down arrow
l - right arrow
我希望能够通过按下一个组合键来打开/关闭此功能shift+ctrl+i
。
我怎样才能做到这一点?我可以根据这里的帖子创建键绑定
但是,如果我使用 xkeybind 创建键绑定,我需要重新启动操作系统才能使其工作(使用 ubuntu 20.04)..
如果我使用语言区域来使用不同的键盘并更改其他语言键盘的键盘设置怎么办?我可以这样做吗?
我知道 super+Up 最大化窗口并 super+down 恢复它。
有什么方法可以让我用一个快捷方式同时做到这两点吗?我的意思是按 super+up 将最大化,但再次按它将恢复窗口。
你好 Ubuntu 社区,
我尝试为我在全新安装后触发的所有设置创建一个设置脚本,以恢复我的所有设置。
该脚本包括:
gsettings set org.gnome.mutter.keybindings toggle-tiled-left "['<Super>h']"
gsettings set org.gnome.mutter.keybindings toggle-tiled-right "['<Super>l']"
执行后,第一个映射按预期工作,但第二个没有。知道为什么会出现这种情况或我如何分析问题吗?
感谢您的帮助,弗朗茨
是否有与键盘敲击符号链接等效的东西?
我想让一个特定的键(数字键盘“。”按钮)像 ALT+A 一样工作。更具体地说,我希望所有应用程序在我按下数字键盘“。”时都收到 ALT+A。
谢!
我是使用 Tmux 的新手。我已经看到在 Tmux 中复制粘贴非常困难。所以我寻找一种更简单的方法。一些网站建议我应该使用 vim 模式,因为我对 vim 非常熟悉。但是,vim 模式复制粘贴不起作用。我不知道我做错了什么。但是默认的复制粘贴键绑定工作得很好。就像 Ctrl-Space 是选择文本,而 Ctrl-w 或 Alt-w 是在 Tmux 中复制选定的文本。这是我的 ~/.tmux.conf 文件。
# Improve colors
set -g default-terminal 'screen-256color'
# Set scrollback buffer to 10000
set -g history-limit 10000
# Customize the status line
set -g status-fg green
set -g status-bg black
set -g mouse on
bind P paste-buffer
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
# remap prefix to Control + a
set -g prefix M-a
# bind 'C-a C-a' to type 'C-a'
bind M-a send-prefix
unbind C-b
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/block/blue'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
我正在使用 Tmux 2.5。在此先感谢您的帮助。
按组合键<Super>v
, 将打开屏幕顶部的通知托盘。
我打算覆盖此组合键,但似乎无法找到它位于 ingsettings
或 in的位置dconf
。
例如,我很想像这样删除键绑定:dconf write /org/gnome/desktop/wm/keybindings/notificationTray "['']"
我在 VirtualBox 中运行 Ubuntu 19.10。我想重新映射组合键 Win+2。键盘配置小程序显示为未使用,但当我按下它时,它打开了 Thunderbird。
在尝试取消映射此组合键失败后,我卸载了 Thunderbird。现在 Win+2 打开文件应用程序,指向我的主文件夹。如何取消映射此组合键?
我使用 xbindkeys,我想将我的一些键盘键映射为鼠标按钮。我不想使用鼠标键,因为布局不适用于我的打字。目前我做这样的事情:
"echo ButtonPress 1 | xmacroplay :0"
KP_Insert
"echo ButtonRelease 1 | xmacroplay :0"
release + KP_Insert
然后我关闭 KP_Insert 的键重复(我的设置中的键码 90):
xset -r 90
不幸的是,由 xbindkeys 运行的 xmacroplay 按钮似乎没有被窗口管理器拾取,因此它不能用于调整窗口大小等操作。
我对将键盘键映射到鼠标按钮的其他选项持开放态度,但使用鼠标键功能不仅会占用整个数字小键盘,而且似乎不允许更改哪些键是按钮,并且在我的系统上我只能从任何键盘按下获得按钮 3。
我是一个重度 gnome do 用户,我已经从 gnome 活动窗口解除了 Super 键的绑定,所以我可以用它来召唤 gnome do。
在 gnome do 首选项中,它只允许我将键绑定设置为 Super 加上其他一些键。我怎样才能将召唤做绑定到超级键?