chh-gx7 on DeviantArthttps://www.deviantart.com/chh-gx7/art/AuroraINNN-106482778chh-gx7

Deviation Actions

chh-gx7's avatar

AuroraINNN

By
Published:
4.7K Views

Description

An Aurora gtk engine theme based on the glow theme.

In action : [link]

First, the attached emerald theme is little bit different - now it has no side and bottom border line for style.

For the gtk theme, I use two patches against Aurora 1.4 version.

cat no_mbar_shadow.patch
--- a/src/aurora_style.c 2008-03-01 00:20:47.510619198 +0100
+++ b/src/aurora_style.c.new 2008-03-01 00:17:33.296474373 +0100
@@ -670,7 +670,8 @@
{
WidgetParameters params;
aurora_set_widget_parameters (widget, style, state_type, &;params);
- aurora_draw_menubar (cr, colors, &;params, x, y, width, height, aurora_style->menubarstyle);
+ if (shadow_type != GTK_SHADOW_NONE)
+ aurora_draw_menubar (cr, colors, &;params, x, y, width, height, aurora_style->menubarstyle);
}
else if (DETAIL ("button") && widget && widget->;parent &&
(AURORA_IS_TREE_VIEW(widget->;parent) ||

cat menuitem_small_arrow.patch
--- aurora-1.4/src/aurora_style.c 2008-10-26 11:49:53.000000000 -0500
+++ aurora-1.4/src/aurora_style.c 2008-12-13 16:53:31.000000000 -0600
@@ -1290,7 +1290,8 @@
arrow.direction = (AuroraDirection) arrow_type;

x -= 2;
- aurora_draw_arrow (cr, colors, &;params, &arrow, x, y, width, height);
+ y += 3;
+ aurora_draw_arrow (cr, colors, &;params, &arrow, x, y, width-5, height-5);
}
else if (DETAIL ("hscrollbar") || DETAIL ("vscrollbar"))
{


Wow, lot of &;P ... that's p.

And on the theme, Clearlooks engine is used for the tab and treeview header so you may need the engine too as well as Aurora. Enjoy!
© 2008 - 2024 chh-gx7
Comments18
Join the community to add your comment. Already a deviant? Log In
insane74's avatar
great GTK theme!
just one question: how to disable stripes on progressbars?
not the animation (that's easy), but the stripes.
i don't like them (too "circus style" for me) and I would like to disable them...

(in previous aurora-based themes I modified the gtkrc to use the nodoka progressbar with disabled stripes).

thanks!