ubuntu 快捷键

准确来说应该是GNOME的快捷键,GNOME是Linux的桌面GUI,提供linux的图形化桌面。

使用以下shell代码可以列出所有快捷键列表

1
2
3
4
for k in `gsettings list-keys org.gnome.desktop.wm.keybindings`;
do echo $k = `gsettings get org.gnome.desktop.wm.keybindings $k`;
done

部分output如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
activate-window-menu = ['<Alt>space']
always-on-top = @as []
begin-move = ['<Alt>F7']
begin-resize = ['<Alt>F8']
close = ['<Alt>F4']
cycle-group = ['<Alt>F6']
cycle-group-backward = ['<Shift><Alt>F6']
cycle-panels = ['<Control><Alt>Escape']
cycle-panels-backward = ['<Shift><Control><Alt>Escape']
cycle-windows = ['<Alt>Escape']
cycle-windows-backward = ['<Shift><Alt>Escape']
lower = @as []
maximize = @as []
maximize-horizontally = @as []
maximize-vertically = @as []
minimize = ['<Super>h']
move-to-center = @as []
move-to-corner-ne = @as []
move-to-corner-nw = @as []
move-to-corner-se = @as []
move-to-corner-sw = @as []
move-to-monitor-down = ['<Super><Shift>Down']
move-to-monitor-left = ['<Super><Shift>Left']
move-to-monitor-right = ['<Super><Shift>Right']
move-to-monitor-up = ['<Super><Shift>Up']

如果要修改快捷键可以使用如下指令

1
2
gsettings set org.gnome.desktop.wm.keybindings panel-run-dialog [] #disable ALT+F1
# gsettings [--schemadir 架构目录] set 架构[:路径] 键 键值


ubuntu 快捷键
https://jfsas.github.io/2024/11/11/ubuntu-快捷键/
作者
JFSAS
发布于
2024年11月11日
许可协议