{ claus.conrad }

Manjaro Openbox right-click menu as root

📅 Dec 25, 2013
⌛ 1 minute

After installing Manjarobox I couldn't get the application menu to work as root. Here's how I solved it:

  • Edit /root/.config/obmenu-generator/schema.pl:

    leafpad /root/.config/obmenu-generator/schema.pl
    
  • Find the line that says:

    require '/home/root/.config/obmenu-generator/config.pl';
    

    and change it to read:

    require '/root/.config/obmenu-generator/config.pl';
    
  • Save the file

Thanks to rfk1ll on the Manjaro forum for this invaluable hint.