Author Topic: 1.8 RC5 Process console color options  (Read 3094 times)

Offline Gdonne

  • Newcomer
  • Posts: 5
  • Astrophoto Addict
1.8 RC5 Process console color options
« on: 2013 April 01 10:17:48 »
Cannot locate Process Console option to change font color, Was able to do in previous versions, Not sure  it located in the CSS doc can,t seem to locate entry. Any one have sucess with this

Thanks
LX200R 10" GPS  SBIG ST2000XM Canon 1000D un mod, Backyard EOS, DSI pro2 Guide camera  PIXINSIGHT

Offline Juan Conejero

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 7111
    • http://pixinsight.com/
Re: 1.8 RC5 Process console color options
« Reply #1 on: 2013 April 02 09:29:01 »
You can customize *all* PixInsight colors and fonts by editing the core CSS file. These are the steps:

1. Locate the .qss file for your platform:

x11.qss for Linux and FreeBSD
osx.qss for Mac OS X
win.qss for Windows

This file is on the bin installation folder. On Windows, this folder is by default:

C:\Program Files\PixInsight\bin

and on Mac OS X:

/Applications/PixInsight.app/Contents/MacOS

2. Open this file with a good code editor. For example, you can use PixInsight's Script Editor.

3. Go to line # 1358 of the qss file. Here you'll find the relevant items to customize the Process Console and command line windows:

QWidget#CWConsole, QWidget#CWCommandLine {
   background: #202020;
   color: white;
}


4. Change the background and color properties as desired. For example, a classical freak combination is:

QWidget#CWConsole, QWidget#CWCommandLine {
   background: black;
   color: green;
}


If you want different colors for the console and command line windows, you can split the above declaration into two separate classes. For example:

QWidget#CWConsole {
   background: black;
   color: green;
}

QWidget#CWCommandLine {
   background: black;
   color: yellow;
}


Let me know if you need more information. I plan on releasing a complete "Guide for PixInsight skinners", time permitting, but we have other priorities right now.

 
Juan Conejero
PixInsight Development Team
http://pixinsight.com/

Offline Gdonne

  • Newcomer
  • Posts: 5
  • Astrophoto Addict
Re: 1.8 RC5 Process console color options
« Reply #2 on: 2013 April 02 16:16:39 »
Thanks Juan

guess I needed to know the correct location of the CSS file.

Many Thanks!!!
LX200R 10" GPS  SBIG ST2000XM Canon 1000D un mod, Backyard EOS, DSI pro2 Guide camera  PIXINSIGHT