Terminal shortcut-key is Ctrl+Alt+T. It's normally saved. But when i push shortcut it doesn't run terminal.
How to fix?
Terminal shortcut-key is Ctrl+Alt+T. It's normally saved. But when i push shortcut it doesn't run terminal.
How to fix?
For those of you who have the same problem and the answer here doesn't work either, it might be related to your python upgrade. I changed from python 3.6 to 3.7 and my terminal icon and its shortcut stopped working. I tried many solutions but the only thing that worked was to go back to python 3.6. You can do it this way: right-click on a point in desktop and choose "open terminal". Then type:
sudo update-alternatives --config python3
and choose a version of python3 that is lower than 3.7. If right-click did not work for you, you can either try the terminal from VSCode or XTerminal (you can download it by just searching it).
One solution is to add the shortcut manually.
However, the first thing we'll do before adding the shortcut manually is to see if it's there, and if a reset would fix it.
First, go into the Settings.
Second, go to devices, then go to keyboard. Then see if the shortcut is on there. Hit "reset all" and see if it brings it back. Maybe reopen the settings just in case to see if the shortcut comes back. If that fails then do the manual solution:
Hopefully that helps.
gsettings set org.gnome.desktop.default-applications.terminal exec 'gnome-terminal'
Open the terminal from the Apps and try this.
I thought Ctrl+alt+T is not working. But a while ago, I found that it indeed working, when I use the left alt key. It took so long for me to realize the problem was with the right alt key, as I never tried this key combination with the left alt key.
To get the left alt key back to working condition I did the following.
I've had this problem intermittently and the accepted answer has solved it in the past, but not when I tried today! Another solution I've found, which is kind of the opposite of what is suggested here, is the following:
sudo apt-get install compizconfig-settings-managerccsmUse Ctrl+Alt+T and check that it works!
I tried Matt Pitkin's answer and it was even easier than that, all I had to do is uncheck and check the "Enable Commands" tickbox and the commands started working again. I did not need to add any new Key Binding.
I have tried all the ways mentioned in all the answers. Nothing did work for me. It's happening since I installed an app called 'terminator', I uninstalled it, and ola, and it's working.
Maybe one should try uninstalling any package/app whose installation might have caused the key combination to stop working.
Don't know why but on my Lubuntu running LXDE, the hotkey is changed to Alt-T.
Looks like I can change it using lxhotkey:
touch /tmp/.X0-lock; lxhotkey
but I'd just let it be, let it be, let it be, let it be, whisper words of wisdom, let it be.
A recent proposed freedesktop.org specification implementation for launching a user's default terminal app is by the xdg-terminal-exec default terminal execution utility.
Sometimes, the utility package is missing from the system (not installed) ... If this is the case, then install it like so:
sudo apt install xdg-terminal-exec
... and the shortcut keys should work again.