diff --git a/data/themes/default.edc b/data/themes/default.edc index a443fda..f7af145 100644 --- a/data/themes/default.edc +++ b/data/themes/default.edc @@ -3,6 +3,8 @@ collections { ////////////////////////////////////////////////////////////////////////////// //// the background and general container for the terminal group { name: "rage/core"; + images.image: "bg_bevel.png" COMP; + images.image: "bevel_dark_out.png" COMP; images.image: "pm_fill.png" COMP; images.image: "pm_overlay.png" COMP; images.image: "pm_shadow.png" COMP; @@ -72,6 +74,22 @@ collections { fill.smooth: 0; } } + part { name: "bevel"; + description { state: "default" 0.0; + image.normal: "bevel_dark_out.png"; + image.border: 1 1 1 1; + image.middle: 0; + fill.smooth: 0; + } + } + part { name: "bevel2"; + description { state: "default" 0.0; + image.normal: "bg_bevel.png"; + image.border: 1 1 1 1; + image.middle: 0; + fill.smooth: 0; + } + } part { name: "shadow"; mouse_events: 0; description { state: "default" 0.0; fixed: 1 1; diff --git a/data/themes/images/Makefile.am b/data/themes/images/Makefile.am index 6ecd7bb..dd6357c 100644 --- a/data/themes/images/Makefile.am +++ b/data/themes/images/Makefile.am @@ -26,4 +26,6 @@ icon_pause2.png \ icon_spanner.png \ icon_spanner2.png \ icon_volume2.png \ -pos_indicator_big.png +pos_indicator_big.png \ +bevel_dark_out.png \ +bg_bevel.png diff --git a/data/themes/images/bevel_dark_out.png b/data/themes/images/bevel_dark_out.png new file mode 100644 index 0000000..f22c0ae Binary files /dev/null and b/data/themes/images/bevel_dark_out.png differ diff --git a/data/themes/images/bg_bevel.png b/data/themes/images/bg_bevel.png new file mode 100644 index 0000000..61c6105 Binary files /dev/null and b/data/themes/images/bg_bevel.png differ