---
title: Manjaro Openbox right-click menu as root
kind: blog
description: 'After installing Manjarobox I couldn''t get the application menu to work as root. Here''s how I solved it:'
words: 27
readingMinutes: 1
created: '2013-12-25T15:21:33.000Z'
updated: '2026-06-27T21:03:45+02:00'
tags:
  - manjaro
  - openbox
  - system-administration
---
* Edit _/root/.config/obmenu-generator/schema.pl_:

  ```shell
  leafpad /root/.config/obmenu-generator/schema.pl
  ```

* Find the line that says: 

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

  and change it to read:

  ```perl
  require '/root/.config/obmenu-generator/config.pl';
  ```

* Save the file
  
Thanks to _rfk1ll_ on the Manjaro forum for this invaluable hint.
