Main > Free Download Search >

Free murrine colors software for linux

murrine colors

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1204
Murrine Configurator 0.5

Murrine Configurator 0.5


Murrine Configurator provides the opportunity to configure all the Murrine Engine style options. more>>
Murrine Configurator provides the opportunity to configure all the Murrine Engine style options.

With Murrine Configurator i want to give users the opportunity to configure all the Murrine Engine style options.

The usage is very simple and the dialogs explain step by step the style options you can edit.

The program is written in bash and required only the installation of "zenity", that is a Gtk2 utility for bash scripting (if you are using ubuntu you can install it with "apt-get install zenity").

After the installation the program can be found under System -> Preferences -> Murrine Configurator.

<<less
Download (0.015MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
981 downloads
Murrina-light colors pack 1.4

Murrina-light colors pack 1.4


Murrina-light colors pack is a simple, elegant and clean GTK theme, in five different colors. more>> <<less
Added: 2008-08-02 License: GPL Price: FREE
1 downloads
Murrine Sandy 0.1

Murrine Sandy 0.1


Murrine Sandy is a GTK theme for GNOME which is based on Murrine Colors. more>> <<less
Added: 2008-05-08 License: Freeware Price: FREE
1 downloads
Alegre colors 1.0

Alegre colors 1.0


Alegre colors 1.0 is yet another excellent addition for Gnome users more>>
Alegre colors 1.0 is yet another excellent addition for Gnome users. It is actually a specific theme for ubuntu desktop.
<<less
Added: 2009-01-12 License: GPL Price: FREE
15 downloads
Murrina Orange 0.3

Murrina Orange 0.3


Murrina Orange 0.3 is yet another great addition for Gnome users. It is actually a Murrine based theme using the Xubuntu colors, youd better have it! Enhancements: Theme was updated for new version more>>

Murrina Orange 0.3 is yet another great addition for Gnome users. It is actually a Murrine based theme using the Xubuntu colors, you'd better have it!

Enhancements:

  • Theme was updated for new version of MurrineEngine 0.30
<<less
Added: 2008-10-31 License: GPL Price: FREE
10 downloads
Ryo-Colors 0.2.1

Ryo-Colors 0.2.1


A GNOME theme family more>> <<less
Added: 2009-07-15 License: GPL Price: FREE
12 downloads
Domino-Murrina 0.3

Domino-Murrina 0.3


Domino-Murrina is a KDE theme based on the Murrine theme for GTK. more>>
Domino-Murrina is a KDE theme based on the Murrine theme for GTK.

A script creating a domino-config for every colour-scheme makes your desktop just look like the Murrine-GTK-Theme!

I have created domino-configs for the colour-schemes:

- Black
- Pure Technology
- Paper
- Black-WhitenGreen Beauty
- windowmaker_black
- Gilouche
- DarkNights
- openBC
- Human
- carmelo

There is also a program that creates a Domino config for a colour-scheme.

Please give me suggestions and tell me why you voted good or bad for Domino-Murrina.

INSTALLATION

- domino_murrina-configfiles_0.3.tar.gz contains config files for domino-murrina; extract to ~/.qt
- domino_murrina_0.3.tar.gz is the tarball for the Domino config creator

USING DOMINO-CONFIGS

- open domino-config
- Load/Save
- Load Murrina-(name of colour-scheme)

USING DOMINO-CONFIG-CREATOR

- run domino_murrina
- select colour-scheme
- click OK-Button

<<less
Download (MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
551 downloads
Imager::Color 0.54

Imager::Color 0.54


Imager::Color is a Perl module with color handling for Imager. more>>
Imager::Color is a Perl module with color handling for Imager.

SYNOPSIS

$color = Imager::Color->new($red, $green, $blue);
$color = Imager::Color->new($red, $green, $blue, $alpha);
$color = Imager::Color->new("#C0C0FF"); # html color specification

$color->set($red, $green, $blue);
$color->set($red, $green, $blue, $alpha);
$color->set("#C0C0FF"); # html color specification

($red, $green, $blue, $alpha) = $color->rgba();
@hsv = $color->hsv(); # not implemented but proposed

$color->info();

if ($color->equals(other=>$other_color)) {
...
}

This module handles creating color objects used by imager. The idea is that in the future this module will be able to handle colorspace calculations as well.

new

This creates a color object to pass to functions that need a color argument.

set

This changes an already defined color. Note that this does not affect any places where the color has been used previously.

rgba

This returns the rgba code of the color the object contains.

info

Calling info merely dumps the relevant colorcode to the log.

equals(other=>$other_color)
equals(other=>$other_color, ignore_alpha=>1)

Compares $self and color $other_color returning true if the color components are the same.

Compares all four channels unless ignore_alpha is set. If ignore_alpha is set only the first three channels are compared.

You can specify colors in several different ways, you can just supply simple values:
simple numeric parameters - if you supply 3 or 4 numeric arguments, you get a color made up of those RGB (and possibly A) components.

a six hex digit web color, either RRGGBB or #RRGGBB
an eight hex digit web color, either RRGGBBAA or #RRGGBBAA.
a 3 hex digit web color, #RGB - a value of F becomes 255.
a color name, from whichever of the gimp Named_Colors file or X rgb.txt is found first. The same as using the name keyword.

You can supply named parameters:

red, green and blue, optionally shortened to r, g and b. The color components in the range 0 to 255.

# all of the following are equivalent
my $c1 = Imager::Color->new(red=>100, blue=>255, green=>0);
my $c2 = Imager::Color->new(r=>100, b=>255, g=>0);
my $c3 = Imager::Color->new(r=>100, blue=>255, g=>0);
hue, saturation and value, optionally shortened to h, s and v, to specify a HSV color. 0 new(hue=>120, value=>1, saturation=>0.5);
web, which can specify a 6 or 3 hex digit web color, in any of the forms #RRGGBB, #RGB, RRGGBB or RGB.
my $c1 = Imager::Color->new(web=>#FFC0C0); # pale red
gray or grey which specifies a single channel, from 0 to 255.
# exactly the same
my $c1 = Imager::Color->new(gray=>128);
my $c1 = Imager::Color->new(grey=>128);
rgb which takes a 3 member arrayref, containing each of the red, green and blue values.
# the same
my $c1 = Imager::Color->new(rgb=>[255, 100, 0]);
my $c1 = Imager::Color->new(r=>255, g=>100, b=>0);
hsv which takes a 3 member arrayref, containting each of hue, saturation and value.
# the same
my $c1 = Imager::Color->new(hsv=>[120, 0.5, 1]);
my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5);

gimp which specifies a color from a GIMP palette file. You can specify the filename of the palette file with the palette parameter, or let Imager::Color look in various places, typically "$HOME/gimp-1.x/palettes/Named_Colors" with and without the version number, and in /usr/share/gimp/palettes/. The palette file must have color names.

my $c1 = Imager::Color->new(gimp=>snow);
my $c1 = Imager::Color->new(gimp=>snow, palette=>testimg/test_gimp_pal);

xname which specifies a color from an X11 rgb.txt file. You can specify the filename of the rgb.txt file with the palette parameter, or let Imager::Color look in various places, typically /usr/lib/X11/rgb.txt.

my $c1 = Imager::Color->new(xname=>blue) # usually RGB(0, 0, 255)

builtin which specifies a color from the built-in color table in Imager::Color::Table. The colors in this module are the same as the default X11 rgb.txt file.

my $c1 = Imager::Color->new(builtin=>black) # always RGB(0, 0, 0)

name which specifies a name from either a GIMP palette, an X rgb.txt file or the built-in color table, whichever is found first.

channel0, channel1, etc, each of which specifies a single channel. These can be abbreviated to c0, c1 etc.

channels which takes an arrayref of the channel values.

Optionally you can add an alpha channel to a color with the alpha or a parameter.

These color specifications can be used for both constructing new colors with the new() method and modifying existing colors with the set() method.

<<less
Download (0.83MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
colorsvn 0.3.2

colorsvn 0.3.2


colorsvn is the Subversion output colorizer. more>>
colorsvn is the Subversion output colorizer.
colorsvn was extracted from kde-sdk and was extended with build process and configuration.
Basic Installation:
./configure
su -
make install
Perhaps you want to set alias to svn:
alias svn=colorsvn
So if you type "svn" youll run "colorsvn".
Enhancements:
- Subversion commands for color highlighting are configurable now.
- For directories, a bold font will be used.
- Colors will be applied only for configured terminal types.
- Erroneous configured colors will be filtered.
- There are minor installation bugfixes.
<<less
Download (0.015MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
936 downloads
Murrine GTK+ engine 0.51

Murrine GTK+ engine 0.51


Murrine GTK+ engine provides a is cairo-based engine which enables you to make your desktop look like a Murrina. more>>
Murrine GTK+ engine provides a is cairo-based engine which enables you to make your desktop look like a Murrina.

"Murrine" is an Italian word meaning the glass artworks done by Venicians glass blowers. Theyre absolutely wonderful and colorful.

Murrine has this object to provide the ability to make your desktop look like a "Murrina", which is the Italian singular of the name "Murrine".

The Engine is cairo-based, and its very fast compared to clearlooks-cairo and ubuntulooks (30% faster and more), since I have tried to optimize the code and removed a lot of slow gradients to provide this unique style.
<<less
Download (0.25MB)
Added: 2007-03-04 License: GPL (GNU General Public License) Price:
968 downloads
Semplice-Colors 2.5.7

Semplice-Colors 2.5.7


Semplice-Colors provides users an easy to use and very elegant theme which is based on the latest murrine engine. more>> <<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
 
Other version of Semplice-Colors
Semplice-Colors 2.0An elegant Murrina theme for your GNOME desktop
Price: FREE
License:GPL
Download
15 downloads
Added: 2009-07-15
Folder Color Icon Set 1.0

Folder Color Icon Set 1.0


Folder Color icon set is a must-have for any computer user who has lots of folders and would like to organize them for faster search and quick retrieval. These 36 color coded folder icons is the way to tackle the too-many-same-looking-folders problem. To change color of a folder: Right click the folder > select Properties > click Customize tab > click Change Icon... > select an icon from this icon set > click OK > click Apply > OK... more>> <<less
Download (446.2Kb)
Added: 2007-07-15 License: Free Price: Free
12 downloads
True Color Picker 2007-07-06

True Color Picker 2007-07-06


True Color Picker is a PHP class that can be used to present a palette to let the user pick colors. more>>
True Color Picker is a PHP class that can be used to present a palette to let the user pick colors.

It displays an image with all the tones for the user to pick by clicking in an image point with the desired tone similar to Photoshop.

It uses AJAX to update the picker boxes without reloading the page.

<<less
Download (MB)
Added: 2007-07-13 License: Freely Distributable Price:
837 downloads
Color::Scheme 1.02

Color::Scheme 1.02


Color::Scheme is a module used to generate pleasant color schemes. more>>
Color::Scheme is a module used to generate pleasant color schemes.

This module is a Perl implementation of Color Schemes 2, a color scheme generator. Start by visitng the Color Schemes 2 web site and playing with the colors.

When you want to generate those schemes on the fly, begin using this modoule. The descriptions herein dont make too much sense without actually seeing the colorful results.

Henceforth, paragraphs in quotes denote documentation copied from Color Schemes 2.

"Important note: This tool doesnt use the standard HSV or HSB model (the same HSV/HSB values ie. in Photoshop describe different colors!). The color wheel used here differs from the RGB spectre used on computer screens, its more in accordance with the classical color theory.

This is also why some colors (especially shades of blue) make less bright shades than the basic colors of the RGB-model. In plus, the RGB-model uses red-green-blue as primary colors, but the red-yellow-blue combination is used here.

This deformation also causes incompatibility in color conversions from RGB-values. Therefore, the RGB input (eg. the HTML hex values like #F854A9) is not exact, the conversion is rough and sometimes may produce slightly different color."

<<less
Download (0.011MB)
Added: 2007-03-29 License: Perl Artistic License Price:
944 downloads
taskbar-compiz for kde 3.5.7 with colors

taskbar-compiz for kde 3.5.7 with colors


taskbar-compiz for kde 3.5.7 with colors is a modified taskbar for KDE 3.5.7. more>>
taskbar-compiz for kde 3.5.7 with colors is a modified taskbar for KDE 3.5.7.

With kde 3.5.7 we can change colors of taskbar.

This taskbar-compiz now folows kde settings for taskbar colors.

Tested with Beryl 0.2.1 and Compiz Fusion from git.

<<less
Download (0.46MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
860 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5