LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 07-17-2015, 04:11 AM   #1
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
How to change contrast on Lubuntu...


Hi all...

I'm running Lubuntu 14.04 on an HP dv9830us laptop and was wondering if there was an easy way to adjust the contrast. The brightness is easily adjusted but there are no keys for the contrast, at least that I can see.

In case it helps, this is my graphics chip...

Code:
1:00.0 VGA compatible controller [0300]: NVIDIA Corporation G86M [GeForce 8600M GS] [10de:0425] (rev a1)
	Subsystem: Hewlett-Packard Company Device [103c:30cc]
	Kernel driver in use: nvidia
Thanks!

Last edited by ardvark71; 07-17-2015 at 04:20 AM. Reason: Added information.
 
Old 07-17-2015, 06:13 AM   #2
yooy
Senior Member
 
Registered: Dec 2009
Posts: 1,387

Rep: Reputation: 174Reputation: 174
This revealed by search engine may help? http://askubuntu.com/questions/91195...creen-contrast

Please use current lubuntu version, don't stay behind..
 
1 members found this post helpful.
Old 07-17-2015, 12:13 PM   #3
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,112
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
I use redshift myself to adjust things automatically by my longitude and lattitude location.
http://manpages.ubuntu.com/manpages/...edshift.1.html
http://sysads.co.uk/2014/07/install-...-ubuntu-14-04/
 
1 members found this post helpful.
Old 07-17-2015, 12:15 PM   #4
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,112
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
Thread in AntiX may help you understand better also

http://antix.freeforums.org/redshift...ing-t4479.html
 
1 members found this post helpful.
Old 07-17-2015, 12:27 PM   #5
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282

Original Poster
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by yooy View Post
Please use current lubuntu version, don't stay behind..
Thank you but I'm happy with this version, I prefer to stick with with LTS releases.

Also, thank you both for your suggestions but they're not quite what I'm looking for.

Regards...
 
Old 07-19-2015, 07:35 AM   #6
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I don't know about LXDE, but for KDE, adjusting: System Settings => Display and Monitor => Gamma, seemed to work on my Thinkpads. Contrast was a bit bland, but after tinkering with gamma, it sharpened up. Later, I found out about colour profiles, but that's another story.
 
1 members found this post helpful.
Old 07-19-2015, 08:42 AM   #7
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282

Original Poster
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by brianL View Post
I don't know about LXDE, but for KDE, adjusting: System Settings => Display and Monitor => Gamma, seemed to work on my Thinkpads. Contrast was a bit bland, but after tinkering with gamma, it sharpened up. Later, I found out about colour profiles, but that's another story.
Hi...

Thank you, I will take a look at this when I get a chance.

Regards...
 
Old 07-19-2015, 06:46 PM   #8
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
There's supposed to be an nvidia-config for that on nVidia chipsets. And amdcccle for ATI/AMD chipsets. For my intel a few things in /sys/class/backlight/intel_backlight/ for my intel GPU'd laptop. And various tricks with libxca or xrandr. My script of sorts to adjust for hulu's dark-ish codecs.

FILE: huluadjust.sh
Code:
#!/bin/bash

MONITOR=HDMI1
#MONITOR=eDP1

xset -dpms s noblank s noexpose
xrandr --output $MONITOR --brightness 1.02:1.02:1.02 --gamma 1.18:1.18:1.18
echo;
ZZZ=""; 
read -s -r -p press -n 1 ZZZ; 
unset ZZZ; 
echo; 
echo;
xrandr --output $MONITOR --brightness 1:1:1 --gamma 1:1:1
xset +dpms s blank s expose
There's also a --contrast setting. The value can be a single number, or 3 numbers to break out RED:GREEN:BLUE. With a value of 1 as the default / neutral setting.
 
1 members found this post helpful.
Old 07-20-2015, 02:06 AM   #9
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282

Original Poster
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by Shadow_7 View Post
There's supposed to be an nvidia-config for that on nVidia chipsets. And amdcccle for ATI/AMD chipsets.
Hi...

Thank you, I can take a look at this, too. Hopefully, I'll get some time tomorrow to work on the laptop, Lord willing.

Regards...
 
Old 07-20-2015, 06:15 PM   #10
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282

Original Poster
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by Shadow_7 View Post
There's supposed to be an nvidia-config for that on nVidia chipsets.
Indeed there is. Thanks!

Thank you all for your help!

For the benefit of anyone who may have this same problem: This setting can be found in the program "Nvidia X Server Settings" program in the second from the last entry in the left hand pane (in my case, "DFP-0," yours may say something different,) under the tab "Color Correction."

If you have a Nvidia GPU and are using the Nvidia proprietary driver (not nouveau) this program, "Nvidia X Server Settings," should come installed with the driver. If not and you are using Ubuntu or one of it's derivatives (or even other distributions,) you can install the "Nvidia-Settings" package to get this program. If you do have it but do not see the setting for this, it may be that your driver version does not support the changes that can be made with a newer version. I had this happen once with the 173 driver. Once I installed 304, everything appeared and came up as it should.

Regards...

Last edited by ardvark71; 07-20-2015 at 06:41 PM. Reason: Added information and smiley.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
change desktop wallpaper on Lubuntu roger1 Linux - Newbie 2 02-10-2012 11:40 AM
Lubuntu: How can I change the password for the password manager? DJOtaku Ubuntu 11 03-22-2011 03:38 AM
How to adjust contrast/brightness JussiKp Linux - Newbie 7 08-05-2006 04:40 AM
How do you change v4lctl brightness, color, contrast? cmisip Linux - Hardware 0 06-05-2003 02:31 PM
contrast in X acid_kewpie Linux - General 5 08-24-2002 10:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 09:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration