Skip to content
Update how recbox work authored by Projekt:Root's avatar Projekt:Root
......@@ -352,6 +352,38 @@ There are two ways to do this. First requires changing theme name in rc.xml file
* /usr/share/themes/light-recbox
* /usr/share/themes/dark-recbox
rc.xml file:
* ~/.config/openbox/rc.xml
Here you need to replace light-recbox (line 42) or choose theme in Openbox Configuration Manager(obconf).
```
...
<theme>
<name>light-recbox</name>
<titleLayout>CILM</titleLayout>
...
```
Next step is to replace RecBox themes in rb-dark-mode.sh:
```
...
# OpenBox theme configuration
sed -i 's/light-recbox/dark-recbox/' ~/.config/openbox/rc.xml
...
```
**Jgmenu:**
To switch menu themes, rb-dark-mode.sh script use light-jgmenu, light-prepend.csv, dark-jgmenu and dark-prepend.csv. So you need make changes in this files as well.
* ~/.config/jgmenu/jgmenurc
* ~/.config/jgmenu/prepend.csv
* ~/.config/openbox/jgmenu-theme-configs/light-jgmenu
* .config/openbox/jgmenu-theme-configs/light-prepend.csv
* ~/.config/openbox/jgmenu-theme-configs/dark-jgmenu
* ~/.config/openbox/jgmenu-theme-configs/dark-prepend.csv
## Removing/adding pamac-update to system tray:
Open pamac-manager and go to the **Preferences** and disable or enable Check for updates option.
......
......