Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vboxrc(5) [centos man page]

vboxrc(5)						    Linux System Administration 						 vboxrc(5)

NAME
vboxrc - user config file for vbox Description Every user can save settings in ~/.vboxrc. Everything after "#" is ignored, as are empty lines. All arguments must be separated by whitespace (spaces, tabs). Arguments may not con- tain whitespace. These keywords are allowed: USERNAME PASSWORD Username and password for vboxd login. These settings are used by vbox and vboxctrl. If they are missing, you have to enter them at runtime. VOLUME Default volume for vbox. C_BACKGROUND Background color. C_STATUSBAR Color for normal text in the status bar. C_STATUSBAR_HL Color for highlighted text in the status bar. C_POWERLED_ON Color for powerled (on). C_POWERLED_OFF Color for powerled (off). C_STATUSLED_ON Color for statusled (on). C_STATUSLED_OFF Color for statusled (off). C_LIST Color for list of messages. C_LIST_SELECTED Color for selected entry in the list of messages. C_INFOTEXT Color for info texts in the message list. All color settings have the format TEXTCOLOR:BACKGROUNDCOLOR. You may not use whitespace. These colors are available for TEXTCOLOR: BLACK RED GREEN BROWN BLUE MAGENTA CYAN GRAY DARKGREY LIGHTRED LIGHTGREEN YELLOW LIGHTBLUE LIGHTMAGENTA LIGHTCYAN WHITE These colors are available for BACKGROUNDCOLOR: BLACK RED GREEN BROWN BLUE MAGENTA CYAN GREY FILES
~/.vboxrc this configuration file /usr/doc/isdnutils/examples/vboxrc an example SEE ALSO
vbox(1) AUTHOR
This manual page was written by Andreas Jellinghaus <aj@dungeon.inka.de>, for Debian GNU/Linux and isdn4linux. ISDN 4 Linux 3.13 2000/09/15 vboxrc(5)

Check Out this Related Man Page

Graphics::Color::CMYK(3pm)				User Contributed Perl Documentation				Graphics::Color::CMYK(3pm)

NAME
Graphics::Color::CMYK - CMYK color model VERSION
version 0.29 SYNOPSIS
use Graphics::Color::CMYK; my $color = Graphics::Color::CMYK->new({ cyan => 120, magenta => .5, yellow => .25, key => .5 }); DESCRIPTION
Graphics::Color::CMYK represents a Color in CMYK color model. Cyan stands for Cyan Magenta Yellow Key (or black). ATTRIBUTES
cyan c Set/Get the cyan component of this Color. magenta m Set/Get the magenta component of this Color. yellow y Set/Get the yellow component of this Color. key k Set/Get the key (black) component of this Color. name Get the name of this color. Only valid if the color was created by name. METHODS
as_string Get a string version of this Color in the form of: CYAN,MAGENTA,YELLOW,KEY as_percent_string Return a percent formatted value for this color. as_array Get the CMYK values as an array equal_to Compares this color to the provided one. Returns 1 if true, else 0; not_equal_to The opposite of "equal_to". AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Cold Hard Code, LLC. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2011-08-11 Graphics::Color::CMYK(3pm)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help Unix and Awk scripts

consider a file with the following format: a header row with colon-separated field names, and data rows with colon-separated values. for example: AGE:EYES:HAIR 32:BLUE:BLONDE 54:BROWN:BROWN write a script, named extract_columns, that prints out the... (4 Replies)
Discussion started by: ravirdprasad
4 Replies

2. Shell Programming and Scripting

New to KSH Scripting > Please Assist!

Array Example: $ colors=RED $ colors=GREEN $ colors=BLUE (4 Replies)
Discussion started by: ora_umair
4 Replies

3. Shell Programming and Scripting

Delete repeated word in text file

Hi expert, I am using C shell. And i trying to delete repeated word. Example file.txt: BLUE YELLOW RED VIOLET RED RED BLUE WHITE YELLOW BLACK and i wan store the output into a new file: BLUE (6 Replies)
Discussion started by: vincyoxy
6 Replies

4. UNIX for Advanced & Expert Users

Help config BLUE QUARTZ

Hello tout le monde, Pour commencer, je ne suis pas un spécialiste en informatique mais je suis a même de suivre certaine procedure afin de configurer un serveur, voilà. Donc je recherche des personnes qui puissent m'aider dans la maintenance et donc l'administration d'une machine cobalt raq4r mis a... (1 Reply)
Discussion started by: brestbluequartz
1 Replies

5. Shell Programming and Scripting

AWK, Perl or Shell? Unique strings and their maximum values from 3 column data file

I have a file containing data like so: 2012-01-02 GREEN 4 2012-01-02 GREEN 6 2012-01-02 GREEN 7 2012-01-02 BLUE 4 2012-01-02 BLUE 3 2012-01-02 GREEN 4 2012-01-02 RED 4 2012-01-02 RED 8 2012-01-02 GREEN 4 2012-01-02 YELLOW 5 2012-01-02 YELLOW 2 I can't always predict what the... (4 Replies)
Discussion started by: rich@ardz
4 Replies