https://github.com/robiot/rojave
A Macos inspired openbox theme
https://github.com/robiot/rojave
Last synced: 8 months ago
JSON representation
A Macos inspired openbox theme
- Host: GitHub
- URL: https://github.com/robiot/rojave
- Owner: robiot
- Created: 2022-02-11T14:39:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T14:50:37.000Z (over 4 years ago)
- Last Synced: 2025-03-24T07:53:09.318Z (over 1 year ago)
- Size: 3.91 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rojave
A Macos inspired openbox theme

## How to install?
```bash
cd ~/.themes
git clone --depth 1 https://github.com/robiot/rojave.git
```
## Pathing openbox
You may notice the title is not fully centered, this can be fixed by changing one line in the openbox souce code.
```bash
git clone --depth 1 https://github.com/danakj/openbox.git
cd openbox
# Now open up a text editor in openbox/framerender.c
# Go to the function framerender_label (around line 351)
# In the RrPaint function call, change self->label_width to self->width
# The line should now look like this: RrPaint(a, self->label, self->width, ob_rr_theme->label_height);
./configure --prefix=/usr \
--with-x \
--enable-startup-notification \
--sysconfdir=/etc \
--libexecdir=/usr/lib/openbox
# Build it
make
# Install it
sudo make install
```