
In the world of computing, keyboard shortcuts are essential for boosting productivity and improving workflow. One of the most commonly used shortcuts is the ‘BackSpace’ key, which is often used to navigate back to the previous page or folder. However, in some applications like Nautilus, Thunar, and Firefox, this shortcut may not work by default. This article will guide you on how to bring back the ‘BackSpace’ keyboard shortcut on these applications.
Yes, it is possible to bring back the ‘BackSpace’ keyboard shortcut on Nautilus, Thunar, and Firefox. In Nautilus, you can restore it by editing the configuration file, while in Thunar, you can enable it by modifying the configuration file as well. In Firefox, you can enable the ‘BackSpace’ key by changing a setting in the about:config page.
Restoring ‘BackSpace’ in Nautilus
Nautilus, the default file manager for GNOME, has removed the ‘BackSpace’ shortcut in recent versions. Here’s how you can restore it:
- Open the Terminal and type in the following command to open the Nautilus configuration file:
nano ~/.config/nautilus/accels
- Add the following line at the end of the file:
This line binds the ‘BackSpace’ key to the ‘Up’ action in Nautilus.(gtk_accel_path "<Actions>/ShellActions/Up" "BackSpace")
- Save the file by pressing
Ctrl+O
and then exit the editor usingCtrl+X
. - Restart Nautilus by running the following command in the Terminal:
nautilus -q
Now, you should be able to use the ‘BackSpace’ key to navigate to the previous folder in Nautilus.
Enabling ‘BackSpace’ in Thunar
Thunar, the default file manager for XFCE, also doesn’t support the ‘BackSpace’ shortcut out of the box. Here’s how to enable it:
- Open the Terminal and type in the following command to open the Thunar configuration file:
nano ~/.config/Thunar/accels.scm
- Add the following line at the end of the file:
This line binds the ‘BackSpace’ key to the ‘open-parent’ action in Thunar.(gtk_accel_path "<Actions>/ThunarWindow/open-parent" "BackSpace")
- Save the file and exit the editor.
Now, the ‘BackSpace’ key should work in Thunar as expected.
Restoring ‘BackSpace’ in Firefox
In Firefox, the ‘BackSpace’ key is used to go back to the previous webpage. However, this feature is disabled by default in recent versions. Here’s how to enable it:
- Open Firefox and type
about:config
in the address bar and press Enter. - You will see a warning page. Click on “Accept the Risk and Continue” to proceed to the settings page.
- In the search bar, type
browser.backspace_action
and press Enter. - You will see a setting with the same name. The default value is ‘2’, which disables the ‘BackSpace’ key. Double-click on the setting and change the value to ‘0’, which enables the ‘BackSpace’ key.
- Close the settings tab.
Now, you should be able to use the ‘BackSpace’ key to navigate back to the previous webpage in Firefox.
In conclusion, while the ‘BackSpace’ keyboard shortcut is not enabled by default in Nautilus, Thunar, and Firefox, it can be easily restored with a few tweaks. Remember, keyboard shortcuts are all about improving your productivity and making your computing experience more enjoyable. Happy computing!
The ‘BackSpace’ keyboard shortcut may not work by default in these applications because it has been removed or disabled in recent versions. However, it can be easily restored or enabled through specific configuration changes.
To restore the ‘BackSpace’ keyboard shortcut in Nautilus, you can open the Nautilus configuration file by running the command nano ~/.config/nautilus/accels
in the Terminal. Then, add the line (gtk_accel_path "<Actions>/ShellActions/Up" "BackSpace")
at the end of the file. Save the file, restart Nautilus by running nautilus -q
in the Terminal, and the ‘BackSpace’ key should work as expected.
To enable the ‘BackSpace’ keyboard shortcut in Thunar, open the Thunar configuration file by running the command nano ~/.config/Thunar/accels.scm
in the Terminal. Add the line (gtk_accel_path "<Actions>/ThunarWindow/open-parent" "BackSpace")
at the end of the file. Save the file, and the ‘BackSpace’ key should now work in Thunar.
To enable the ‘BackSpace’ keyboard shortcut in Firefox, type about:config
in the address bar, press Enter, and accept the warning. In the search bar, type browser.backspace_action
and press Enter. Double-click on the setting with the same name and change the value to ‘0’. The ‘BackSpace’ key will now work to navigate back to the previous webpage in Firefox.