Red Hat Bluecurve theme ported over to GTK 3/4. Designed for the MATE and Xfce desktop environments.
- GTK 3/4 theme, forked from Blueshell and modified to make the theme better resemble the original GTK 2 theme and updated to support both GTK 3 and 4, as well as including all of the color schemes that were included with the Bluecurve theme in early versions of Fedora.
- GTK 2 engine and theme.
- Original Bluecurve Metacity themes updated to resolve issues arising from using old metacity themes on newer versions of MATE.
- Original Bluecurve XFWM4 theme.
- Bluecurve icon and cursor set.
- Luxi font family (fonts used originally in Red Hat 8-9 and early versions of Fedora and RHEL).
- Wallpapers that shipped with Red Hat 8-9 and early versions of Fedora, some of which were updated to widescreen by myself.
There is a package for OpenSUSE Tumbleweed and Leap maintained by vyvir. Follow the "Add repository and install manually" instructions here.
Either download the latest release or clone the git repository:
git clone https://github.com/neeeeow/Bluecurve.git
cd Bluecurve
Caution
You must either download the latest release or clone the git repository. Simply downloading the repository as a .zip file breaks permissions!
./install.sh
Either download the latest release or clone the git repository:
git clone https://github.com/neeeeow/Bluecurve.git
cd Bluecurve
First ensure that you have the following installed on your system:
- Cmake
- gcc
- GTK 2 development libraries
Then navigate to the GTK 2 engine source code directory:
cd engine/src
Then create the build
folder
mkdir build && cd build
Next run cmake
cmake ..
Finally, compile and install the GTK 2 engine (the engine is installed to ~/.gtk-2.0/engines
) and return to the repository's root directory:
make && make install && cd ../../../
Copy the contents of the icons
folder to ~/.icons
cp -r icons/* ~/.icons
Copy the contents of the themes
folder to ~/.themes
cp -r themes/* ~/.themes
Warning
Only do this step if your distribution doesn't include the Luxi font family.
First create the directory ~/.local/share/fonts
if it doesn't exist:
mkdir ~/.local/share/fonts
Next, copy the fonts to the directory:
cp fonts/*.ttf ~/.local/share/fonts
Simply execute the following command:
gsettings set org.mate.panel.menubar icon-name 'redhat-icon-panel-menu'
If you wish to compile & install the GTK 2 engine system-wide, simply enable the INSTALL_SYSTEM_WIDE
flag when compiling the engine.
Instructions:
cd engine/src
mkdir build && cd build
cmake -DINSTALL_SYSTEM_WIDE=ON ..
make
sudo make install
Contributors are more than welcome! If you would like to contribute, first read the contributing guidelines.