Mousepad Editor Menu Visibility Problem

Hi. Shortly, the Mousepad is a simple text editor for Xfce.

I have faced an issue while using it. I unchecked the "Menu Bar" under the view menu by mistake.

So, there was no settings menu to change it again.

I googled about this problem and I found a solution.

Disable Menu Bar Visibility by Terminal

Using this command, you can disable the menu bar.

gsettings set org.xfce.mousepad.preferences.window menubar-visible false

Enable Menu Bar Visibility by Terminal

Using this command, you can enable the menu bar.

gsettings set org.xfce.mousepad.preferences.window menubar-visible true

Show All Settings

If you want to see all the settings, you can use this command;

gsettings list-recursively org.xfce.mousepad.preferences

You will see an output like that;

org.xfce.mousepad.preferences.view show-whitespace false
org.xfce.mousepad.preferences.view smart-home-end 'disabled'
org.xfce.mousepad.preferences.view color-scheme 'oblivion'
org.xfce.mousepad.preferences.view show-right-margin false
org.xfce.mousepad.preferences.view show-line-marks false
org.xfce.mousepad.preferences.view show-line-endings false
org.xfce.mousepad.preferences.view indent-on-tab true
org.xfce.mousepad.preferences.view auto-indent true
org.xfce.mousepad.preferences.view insert-spaces false
org.xfce.mousepad.preferences.view tab-width 4
org.xfce.mousepad.preferences.view highlight-current-line false
org.xfce.mousepad.preferences.view show-line-numbers true
org.xfce.mousepad.preferences.view word-wrap true
org.xfce.mousepad.preferences.view use-default-monospace-font true
org.xfce.mousepad.preferences.view indent-width -1
org.xfce.mousepad.preferences.view font-name 'Monospace'
org.xfce.mousepad.preferences.view right-margin-position 80
org.xfce.mousepad.preferences.view match-braces false
org.xfce.mousepad.preferences.window remember-size true
org.xfce.mousepad.preferences.window statusbar-visible true
org.xfce.mousepad.preferences.window menubar-visible-in-fullscreen 'auto'
org.xfce.mousepad.preferences.window toolbar-visible true
org.xfce.mousepad.preferences.window statusbar-visible-in-fullscreen 'auto'
org.xfce.mousepad.preferences.window toolbar-visible-in-fullscreen 'auto'
org.xfce.mousepad.preferences.window recent-menu-items 10
org.xfce.mousepad.preferences.window cycle-tabs false
org.xfce.mousepad.preferences.window always-show-tabs false
org.xfce.mousepad.preferences.window path-in-title true
org.xfce.mousepad.preferences.window default-tab-sizes '2,3,4,8'
org.xfce.mousepad.preferences.window toolbar-style 'icons'
org.xfce.mousepad.preferences.window menubar-visible true
org.xfce.mousepad.preferences.window remember-position false
org.xfce.mousepad.preferences.window remember-state true
org.xfce.mousepad.preferences.window toolbar-icon-size 'small-toolbar'

That’s all 🙂 I hope this helps you.