How to stop screen from dimming when power cable is unplugged?
On HP Pavilion with Ubu 14.04 LTS, screen automatically dims when power cable is unplugged. I sometimes want to have maximum brightness, even when power cable is unplugged, for personal reasons.
How can I do this?
Thanks for suggestions.
screen brightness
add a comment |
On HP Pavilion with Ubu 14.04 LTS, screen automatically dims when power cable is unplugged. I sometimes want to have maximum brightness, even when power cable is unplugged, for personal reasons.
How can I do this?
Thanks for suggestions.
screen brightness
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26
add a comment |
On HP Pavilion with Ubu 14.04 LTS, screen automatically dims when power cable is unplugged. I sometimes want to have maximum brightness, even when power cable is unplugged, for personal reasons.
How can I do this?
Thanks for suggestions.
screen brightness
On HP Pavilion with Ubu 14.04 LTS, screen automatically dims when power cable is unplugged. I sometimes want to have maximum brightness, even when power cable is unplugged, for personal reasons.
How can I do this?
Thanks for suggestions.
screen brightness
screen brightness
asked Feb 19 '15 at 12:33
MiloMilo
81125
81125
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26
add a comment |
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26
add a comment |
3 Answers
3
active
oldest
votes
This solution no longer works. I am leaving my answer here to wait for an authority from Ubuntu community/developer to chip in.
None of the solutions here worked. I managed to correct this behavior by using laptop-mode-tools plugin:
- Install the plugin with
apt-get install laptop-mode-tools
. - Set the dim I wished to set to:
cat /sys/class/backlight/intel_backlight/brightness
this should give a value between 1 to 7500. Say I got 3000 in this case. - Edit the file
/etc/laptop-mode/conf.d/lcd-brightness.conf
: I updated the bottom-most settings to the following:
# Commands to execute to set the brightness on your LCD
#
BATT_BRIGHTNESS_COMMAND="echo 2000"
LM_AC_BRIGHTNESS_COMMAND="echo 7500"
NOLM_AC_BRIGHTNESS_COMMAND="echo 3000"
BRIGHTNESS_OUTPUT="/sys/class/backlight/intel_backlight/brightness"
- And lastly, an important step: Plug the adaptor in, then plug it off again. You should see the screen brightness stays the same.
This solution works on Dell Alienware.
add a comment |
Using the GUI:
- Open "System Settings"
- Under "Personal", click on "Brightness & Lock"
- To disable dimming, under "Brightness", untick "Dim screen to save power"
- To re-enable dimming, under "Brightness", tick "Dim screen to save power"
Using the command line:
To disable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim true
To re-enable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim false
add a comment |
SOLVED: click on battery icon at bottom of desktop, where time & date appears. after click go to more options on battery icon, then create your own plan by name PLAN 1 or PLAN 2 as you wish. then set all settings like battery, power and other option to NEVER. then click on next.
Now your laptop screen will not be dim if you unplug the charger.
EnJOY..... RASHID JATOI.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f587331%2fhow-to-stop-screen-from-dimming-when-power-cable-is-unplugged%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This solution no longer works. I am leaving my answer here to wait for an authority from Ubuntu community/developer to chip in.
None of the solutions here worked. I managed to correct this behavior by using laptop-mode-tools plugin:
- Install the plugin with
apt-get install laptop-mode-tools
. - Set the dim I wished to set to:
cat /sys/class/backlight/intel_backlight/brightness
this should give a value between 1 to 7500. Say I got 3000 in this case. - Edit the file
/etc/laptop-mode/conf.d/lcd-brightness.conf
: I updated the bottom-most settings to the following:
# Commands to execute to set the brightness on your LCD
#
BATT_BRIGHTNESS_COMMAND="echo 2000"
LM_AC_BRIGHTNESS_COMMAND="echo 7500"
NOLM_AC_BRIGHTNESS_COMMAND="echo 3000"
BRIGHTNESS_OUTPUT="/sys/class/backlight/intel_backlight/brightness"
- And lastly, an important step: Plug the adaptor in, then plug it off again. You should see the screen brightness stays the same.
This solution works on Dell Alienware.
add a comment |
This solution no longer works. I am leaving my answer here to wait for an authority from Ubuntu community/developer to chip in.
None of the solutions here worked. I managed to correct this behavior by using laptop-mode-tools plugin:
- Install the plugin with
apt-get install laptop-mode-tools
. - Set the dim I wished to set to:
cat /sys/class/backlight/intel_backlight/brightness
this should give a value between 1 to 7500. Say I got 3000 in this case. - Edit the file
/etc/laptop-mode/conf.d/lcd-brightness.conf
: I updated the bottom-most settings to the following:
# Commands to execute to set the brightness on your LCD
#
BATT_BRIGHTNESS_COMMAND="echo 2000"
LM_AC_BRIGHTNESS_COMMAND="echo 7500"
NOLM_AC_BRIGHTNESS_COMMAND="echo 3000"
BRIGHTNESS_OUTPUT="/sys/class/backlight/intel_backlight/brightness"
- And lastly, an important step: Plug the adaptor in, then plug it off again. You should see the screen brightness stays the same.
This solution works on Dell Alienware.
add a comment |
This solution no longer works. I am leaving my answer here to wait for an authority from Ubuntu community/developer to chip in.
None of the solutions here worked. I managed to correct this behavior by using laptop-mode-tools plugin:
- Install the plugin with
apt-get install laptop-mode-tools
. - Set the dim I wished to set to:
cat /sys/class/backlight/intel_backlight/brightness
this should give a value between 1 to 7500. Say I got 3000 in this case. - Edit the file
/etc/laptop-mode/conf.d/lcd-brightness.conf
: I updated the bottom-most settings to the following:
# Commands to execute to set the brightness on your LCD
#
BATT_BRIGHTNESS_COMMAND="echo 2000"
LM_AC_BRIGHTNESS_COMMAND="echo 7500"
NOLM_AC_BRIGHTNESS_COMMAND="echo 3000"
BRIGHTNESS_OUTPUT="/sys/class/backlight/intel_backlight/brightness"
- And lastly, an important step: Plug the adaptor in, then plug it off again. You should see the screen brightness stays the same.
This solution works on Dell Alienware.
This solution no longer works. I am leaving my answer here to wait for an authority from Ubuntu community/developer to chip in.
None of the solutions here worked. I managed to correct this behavior by using laptop-mode-tools plugin:
- Install the plugin with
apt-get install laptop-mode-tools
. - Set the dim I wished to set to:
cat /sys/class/backlight/intel_backlight/brightness
this should give a value between 1 to 7500. Say I got 3000 in this case. - Edit the file
/etc/laptop-mode/conf.d/lcd-brightness.conf
: I updated the bottom-most settings to the following:
# Commands to execute to set the brightness on your LCD
#
BATT_BRIGHTNESS_COMMAND="echo 2000"
LM_AC_BRIGHTNESS_COMMAND="echo 7500"
NOLM_AC_BRIGHTNESS_COMMAND="echo 3000"
BRIGHTNESS_OUTPUT="/sys/class/backlight/intel_backlight/brightness"
- And lastly, an important step: Plug the adaptor in, then plug it off again. You should see the screen brightness stays the same.
This solution works on Dell Alienware.
edited Aug 27 '17 at 17:12
answered Aug 24 '17 at 19:36
jaycodejaycode
18316
18316
add a comment |
add a comment |
Using the GUI:
- Open "System Settings"
- Under "Personal", click on "Brightness & Lock"
- To disable dimming, under "Brightness", untick "Dim screen to save power"
- To re-enable dimming, under "Brightness", tick "Dim screen to save power"
Using the command line:
To disable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim true
To re-enable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim false
add a comment |
Using the GUI:
- Open "System Settings"
- Under "Personal", click on "Brightness & Lock"
- To disable dimming, under "Brightness", untick "Dim screen to save power"
- To re-enable dimming, under "Brightness", tick "Dim screen to save power"
Using the command line:
To disable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim true
To re-enable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim false
add a comment |
Using the GUI:
- Open "System Settings"
- Under "Personal", click on "Brightness & Lock"
- To disable dimming, under "Brightness", untick "Dim screen to save power"
- To re-enable dimming, under "Brightness", tick "Dim screen to save power"
Using the command line:
To disable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim true
To re-enable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim false
Using the GUI:
- Open "System Settings"
- Under "Personal", click on "Brightness & Lock"
- To disable dimming, under "Brightness", untick "Dim screen to save power"
- To re-enable dimming, under "Brightness", tick "Dim screen to save power"
Using the command line:
To disable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim true
To re-enable dimming run:
gsettings org.gnome.settings-daemon.plugins.power idle-dim false
edited Sep 4 '18 at 10:22
DK Bose
13.8k124184
13.8k124184
answered Feb 19 '15 at 14:31
koskos
25.6k870121
25.6k870121
add a comment |
add a comment |
SOLVED: click on battery icon at bottom of desktop, where time & date appears. after click go to more options on battery icon, then create your own plan by name PLAN 1 or PLAN 2 as you wish. then set all settings like battery, power and other option to NEVER. then click on next.
Now your laptop screen will not be dim if you unplug the charger.
EnJOY..... RASHID JATOI.
add a comment |
SOLVED: click on battery icon at bottom of desktop, where time & date appears. after click go to more options on battery icon, then create your own plan by name PLAN 1 or PLAN 2 as you wish. then set all settings like battery, power and other option to NEVER. then click on next.
Now your laptop screen will not be dim if you unplug the charger.
EnJOY..... RASHID JATOI.
add a comment |
SOLVED: click on battery icon at bottom of desktop, where time & date appears. after click go to more options on battery icon, then create your own plan by name PLAN 1 or PLAN 2 as you wish. then set all settings like battery, power and other option to NEVER. then click on next.
Now your laptop screen will not be dim if you unplug the charger.
EnJOY..... RASHID JATOI.
SOLVED: click on battery icon at bottom of desktop, where time & date appears. after click go to more options on battery icon, then create your own plan by name PLAN 1 or PLAN 2 as you wish. then set all settings like battery, power and other option to NEVER. then click on next.
Now your laptop screen will not be dim if you unplug the charger.
EnJOY..... RASHID JATOI.
answered Jul 15 '17 at 4:10
RASHID JATOIRASHID JATOI
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f587331%2fhow-to-stop-screen-from-dimming-when-power-cable-is-unplugged%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This should be a setting in your BIOS. try restarting and pressing ESC repeatingly upon startscreen to access your BIOS and set the options to dim your screen accordingly. Ubuntu does not manage your LCDs brightness level.
– mondjunge
Feb 19 '15 at 13:26