Sponsored Content
Operating Systems Solaris How to change folder color in terminal ? Post 302397391 by jlliagre on Monday 22nd of February 2010 03:22:52 AM
Old 02-22-2010
You are using Gnu ls with the --colors option. Modify the LS_COLORS variable contents to change its settings.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Change background color in VI editor

Hi, I am new to unix. How can i change the background color in vi? Thank you. -tictactoe (1 Reply)
Discussion started by: tictactoe
1 Replies

2. Shell Programming and Scripting

Font Color Change Using .profile

Does anyone know how can I change font color, background color etc for a particular user using .profile? Any help is appreciated. (0 Replies)
Discussion started by: fifo_vs_lifo23
0 Replies

3. UNIX for Dummies Questions & Answers

How to change the font or color of text

Hi Gurus, I have a small requirement where i want to change the color & font of some text in a file. i have a file error.txt which will be created in the script using egrep. After that iam adding these lines at head & tail to that file using the following code awk 'BEGIN{print"Please... (4 Replies)
Discussion started by: pssandeep
4 Replies

4. Shell Programming and Scripting

How to have color coded Terminal display,(like linux)

Hi all, I would like to know how to have a color display in the terminal... In the sense that, In many linux terminals,we have color coded for each file type, green for executable ,blue for dirs and so on... I wanted to know how i can have the same arrangement in solaris(b-79a) I am not... (5 Replies)
Discussion started by: wrapster
5 Replies

5. HP-UX

color terminal and tab completion?

hello, i'm a linux zealot (fedora), so i know a some about unix. the company i work for uses HP-UX though and there are a few quirks i'd like smooth out by making them work more like my beloved redhat type systems...=) right now they have all users using ksh and completion is done by hitting... (4 Replies)
Discussion started by: clockworks
4 Replies

6. Shell Programming and Scripting

how to set background color in Unix terminal

Hi All, how do I set in .profile file Unix terminal background color = BLUE ? Please advice me. :confused: (2 Replies)
Discussion started by: raghur77
2 Replies

7. Shell Programming and Scripting

Change color on another terminal

i already have a running and working script for remote connection. is there a way to change the terminal color everytime I ssh remotely to another server? this is to avoid confusion since I will be using only one server to remotely access around 50 servers (solaris, linux,. etc) (2 Replies)
Discussion started by: lhareigh890
2 Replies

8. UNIX for Dummies Questions & Answers

How to change color when doing echo in tcsh?

Is it possible to change the color when doing an echo? Example, having the following command print in dark blue. echo "Hello" ---------- Post updated at 11:50 AM ---------- Previous update was at 10:25 AM ---------- Just figured out how to do it (2 Replies)
Discussion started by: kristinu
2 Replies

9. OS X (Apple)

Manipulate terminal session background color

Greetings, I know I can manipulate from AppleScript to terminal.app or just run commands from apple script. But what about from a BASH Script. when A user logs in and runs a maintenance utility I have written for them, I want to modify their background color and text color. example; ... (4 Replies)
Discussion started by: doctorfoo1
4 Replies

10. UNIX for Dummies Questions & Answers

How to change the background color in the init 3 mode(not line color)

Hello, I am using RHEL 6.1 on VMware I am searching for a way to change background color (not line by line color wich one can using tput command) basically changing the color of the whole screen to white instead of the default black and changing font color to black and alos would like to... (2 Replies)
Discussion started by: Dexobox
2 Replies
Geo::GoogleEarth::Pluggable::Plugin::Style(3pm) 	User Contributed Perl Documentation	   Geo::GoogleEarth::Pluggable::Plugin::Style(3pm)

NAME
Geo::GoogleEarth::Pluggable::Plugin::Style - Geo::GoogleEarth::Pluggable Style Plugin Methods SYNOPSIS
use Geo::GoogleEarth::Pluggable; my $document=Geo::GoogleEarth::Pluggable->new; #ISA L<Geo::GoogleEarth::Pluggable> my $style=$document->IconStyle(color=>{red=>255}); #ISA L<Geo::GoogleEarth::Pluggable::Style> my $point=$document->Point(style=>$style); #ISA L<Geo::GoogleEarth::Pluggable::Contrib::Point> print $document->render; METHODS
Methods in this package are AUTOLOADed into the Geo::GoogleEarth::Pluggable::Folder namespace at runtime. Style Constructs a new Style object and appends it to the document object. Returns the Style object reference. my $style=$folder->Style( id => $id, #default is good IconStyle => {}, LineStyle => {}, PolyStyle => {}, LabelStyle => {}, ListStyle => {}, ); my $style=$folder->Style( IconStyle => $style1, #extracts IconStyle from $style1 LineStyle => $style2, #extracts LineStyle from $style2 PolyStyle => $style3, #extracts PolyStyle from $style3 ); StyleMap Constructs a new StyleMap object and appends it to the document object. Returns the StyleMap object reference. my $stylemap=$document->StyleMap( normal => $style1, highlight => $style2, ); IconStyle my $style=$folder->IconStyle( color => $color, scale => $scale, href => $url, ); LineStyle my $color={red=>255, green=>255, blue=>255, alpha=>255}; my $style=$folder->LineStyle(color=>$color); PolyStyle my $color={red=>255, green=>255, blue=>255, alpha=>255}; my $style=$folder->PolyStyle(color=>$color); LabelStyle my $style=$folder->LabelStyle( color => $color, scale => $scale, ); ListStyle my $style=$folder->ListStyle( href => $url, ); TODO
Need to determine what methods should be in the Folder package and what should be on the Plugin/Style package and why. BUGS
Please log on RT and send to the geo-perl email list. LIMITATIONS
This will construct 100 identical style objects foreach (1 .. 100) { $document->Point(style=>$document->IconStyle(color=>{red=>255})); } Do this instead my $style=$document->IconStyle(color=>{red=>255}); foreach (1 .. 100) { $document->Point(style=>$style); } SUPPORT
Try geo-perl email list. AUTHOR
Michael R. Davis (mrdvt92) CPAN ID: MRDVT COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Geo::GoogleEarth::Pluggable creates a GoogleEarth Document. perl v5.14.2 2011-06-25 Geo::GoogleEarth::Pluggable::Plugin::Style(3pm)
All times are GMT -4. The time now is 07:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy