mirror of
https://github.com/elementary/gala.git
synced 2024-11-28 04:05:22 +03:00
renamed custom move-to-workspace-* keys to switch-to-workspace-*
This commit is contained in:
parent
826a6f72cd
commit
c3f96300c1
@ -66,12 +66,12 @@
|
||||
<summary></summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="as" name="move-to-workspace-first">
|
||||
<key type="as" name="switch-to-workspace-first">
|
||||
<default><![CDATA[['<Super>Home']]]></default>
|
||||
<summary>Shortcut to move to first workspace</summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="as" name="move-to-workspace-last">
|
||||
<key type="as" name="switch-to-workspace-last">
|
||||
<default><![CDATA[['<Super>End', '<Super>0']]]></default>
|
||||
<summary>Shortcut to move to last workspace</summary>
|
||||
<description></description>
|
||||
|
@ -99,10 +99,10 @@ namespace Gala
|
||||
screen.get_display ().add_keybinding ("expose-all-windows", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
window_overview.open (true, true);
|
||||
});
|
||||
screen.get_display ().add_keybinding ("move-to-workspace-first", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
screen.get_display ().add_keybinding ("switch-to-workspace-first", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
screen.get_workspace_by_index (0).activate (screen.get_display ().get_current_time ());
|
||||
});
|
||||
screen.get_display ().add_keybinding ("move-to-workspace-last", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
screen.get_display ().add_keybinding ("switch-to-workspace-last", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
screen.get_workspace_by_index (screen.n_workspaces - 1).activate (screen.get_display ().get_current_time ());
|
||||
});
|
||||
screen.get_display ().add_keybinding ("zoom-in", BehaviorSettings.get_default ().schema, 0, () => {
|
||||
|
Loading…
Reference in New Issue
Block a user