I’ve been tinkering around in Ubuntu, trying to make my workflow a bit smoother, and I’ve hit a bit of a snag. You see, I come from a background where I’ve always used Ctrl+Y for the redo action, and for some reason, Ubuntu defaulted that to Ctrl+Shift+Z. It’s a bit annoying since my brain is wired to look for Ctrl+Y, and having to remember the new combination is just throwing me off my game.
I’ve tried searching through the settings, but honestly, I couldn’t seem to find anything that directly addresses changing that keyboard shortcut. It’s kind of frustrating because I know in other programs or operating systems this is usually a pretty straightforward thing to do. I wish I could just go into some shortcut menu and redefine it to what I’m used to, but it seems a bit more complicated than I anticipated.
Is there a hidden settings menu or maybe a configuration file that I need to edit? Or is there a terminal command that I can run to set this up? I heard something about GNOME settings or something like that, but I’m not entirely sure how to navigate that. I don’t want to mess anything up, so I’m hoping someone here has gone through this process and can guide me through it.
I mean, they say a good keyboard shortcut can change your life, right? I just want to be able to hit Ctrl+Y without having to think twice about it. I know this might seem like a small issue to some, but for someone who spends a lot of time working in text editors or programming, this little tweak could save a ton of time and mental energy.
If anyone has any tips or step-by-step instructions, that would be incredibly helpful. Maybe you’ve done it yourself, or you just happen to know where to look. Please, share your wisdom! It’ll help me—and probably others—who find themselves in a similar boat. Thanks in advance for any help you can provide!
Changing Redo Shortcut in Ubuntu
Hey there! I totally get how frustrating it can be when keyboard shortcuts don’t match what you’re used to, especially when you’re trying to keep your workflow smooth. Here’s a simple way to change the redo action back to
Ctrl+Y
in Ubuntu:– You can find it in your applications, just search for “Settings” or “System Settings”.
– Once in Settings, look for the “Keyboard” section on the left side menu, and then click on “Keyboard Shortcuts” or just “Shortcuts”.
– Scroll through the list until you find the “Redo” action. It might be under “Editing” or something similar.
– Click on the current shortcut (which is probably
Ctrl+Shift+Z
), and when it prompts you to enter a new shortcut, just pressCtrl+Y
.– Open any text editor and try using
Ctrl+Y
for redo. It should work now!If you don’t see the option in the settings, or for some reason it doesn’t stick, you might have to dive into configuration files or use terminal commands. But let’s try this first since it’s usually the easiest method. If it still doesn’t work, I can help you with terminal commands!
Good luck, and hopefully, you’ll be back to hitting
Ctrl+Y
without any hiccups!To change the default keyboard shortcut for the redo action in Ubuntu from
Ctrl+Shift+Z
toCtrl+Y
, you can make use of the GNOME Tweaks tool, which allows you to modify many aspects of your desktop environment, including keyboard shortcuts. First, install it if you haven’t done so already by runningsudo apt install gnome-tweaks
in your terminal. Once installed, open GNOME Tweaks and navigate to the “Keyboard & Mouse” section. Here you will find an option called “Additional Layout Options.” Look for the “Ctrl+Y for Redo” option or anything similar in the list of available shortcuts. If it is not directly visible, the next step is to look for a text editor or other applications where you want to redefine this behavior.If you can’t find an option in GNOME Tweaks, you can also use the terminal to set custom shortcuts through the
dconf-editor
. Install it withsudo apt install dconf-editor
if needed. Then, rundconf-editor
and navigate to/org/gnome/settings-daemon/plugins/media-keys/
. Here, you can manually set your desired shortcut by creating or modifying the entry for redo to point toCtrl+Y
. Additionally, ensure that the original shortcut is disabled by checking any conflicting keybindings. Make sure to back up any configuration files before making changes, as this will help you revert back if something doesn’t work as expected. By following these steps, you can streamline your workflow and keep working efficiently.