Score:4

Cannot assign Ctrl+Alt+Up/Down to apps, Ubuntu holds these shortcuts to itself

zm flag

I try to assign assign Ctrl+Alt+Up/Down in any application but the system doesn't passes the hotkey to an application. Any other hotkeys are passed normally to VC Code for example. How I can release hotkeys from Ubuntu system to use them myself?

I try to assign assign Ctrl+Alt+Up/Down in VC Code

I think Ubuntu holds these shortcuts to switch between desktops. I changed shortcuts to switch between desktops to Super+Alt+Up/Down in settings, but the problem stays anyway.

Score:6
cn flag

Release the Ctrl+Alt+ARROW hotkeys from use by the system and assign switching between desktops to Super+Alt+ARROW

  1. View the list of all hotkeys available to change

    gsettings list-recursively | grep org.gnome.desktop.wm.keybindings
    
  2. Check which hotkeys are used by the system to switch between desktops

    gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-left
    gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-right
    gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-up
    gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
    
  3. Release the hotkeys Ctrl+Alt+ARROW from use by the system

    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "[]"   
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "[]"  
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-up "[]"  
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down "[]"
    
  4. Assign switching between desktops to Super+Alt+ARROW

    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "['<Super><Alt>Left']"
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "['<Super><Alt>Right']"
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-up "['<Super><Alt>Up']"
    gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down "['<Super><Alt>Down']"
    

Good luck!

I sit in a Tesla and translated this thread with Ai:

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.