Super+1 keyboard shortcuts not working

The keyboard shortcuts super+[number] to open apps from the dock doesnt work. I tried resetting keyboard shortcuts but of no use. I dont understand why or what causes the problem. also super+up arrow did not maximize window and i had to mannually change it on custom keyboard shortcuts.
Please help me figure this out

Some of those settings are only accessible using the command-line utility gstettings.

To see what keyboard shortcuts are currently associated with your switch-to-application handler. Run the following command.

$ gsettings list-recursively | grep switch-to-application | sort

To (re)set them to <Super>N {N | 1 ≤ N ≤ 9} run the following command.

$ for i in {1..9}; do gsettings set org.gnome.shell.keybindings switch-to-application-$i "['<Super>$i']"; done
2 Likes

It worked Thankyou so much…!!!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.