No need to go into console, you could achieve the same by adding a custom keyboard shortcut to re- enable your internal screen.
Choose System Settings > Keyboard > Shortcuts > Custom Shortcuts, click the + and add the command to a shortcut of your choice:
xrandr --output <screenname> --auto
Just tested it on my system (laptop, 15.10); switched off my screen and successfully re- enabled it with the keyboard shortcut, running the command :)
Alternatively
You could use an edited version of this script. The version below (small background script, is checking once per four seconds if an external screen is connected) makes sure your internal screen is switched on
#!/usr/bin/env python3
import subprocess
import time
# --- set your internal screen below (the example is my primary screen)
internal = "DVI-I-1"
#---
# don't change anything below
scr_info1 = 0
while True:
time.sleep(4)
# read the current screen setup from xrandr
get_screens = subprocess.check_output("xrandr").decode("utf-8").splitlines()
scr_data = [l for l in get_screens if " connected " in l]
# count the number of connected screens
scr_info2 = len(scr_data)
# if the number of connected screens changes,
# switch off the internal one if there are two screens
if scr_info2 != scr_info1:
if scr_info2 == 2:
ext = [s.split()[0] for s in scr_data if not internal in s][0]
subprocess.Popen(["xrandr", "--output", internal, "--off", "--output", ext, "--auto"])
else:
subprocess.Popen(["xrandr", "--output", internal, "--auto"])
scr_info1 = scr_info2
How to setup
- Copy the script above into an empty file, save it as
switch_screens.py
- In the head section of your script, set the name of your internal screen. To find out, open a terminal window and run the command
xrandr
(no external screen connected) The line with "connected" in it shows the name of your screen in the first string, looking like: VGA-1
or something like that.
Test- run it by opening a terminal window and typ the command:
python3 /path/to/switch_screens.py
While the script runs, connect your external screen, wait for you internal screen to switch of and disconnect again.
If all works fine, add the command below to Startup Applications: open Dash > Startup Applications > Add. Add the command:
/bin/bash -c "sleep 15 && python3 /path/to/switch_screens.py"
Log out and back in. Now your internal screen is switched off automatically if an external screen is connected, re- enabling it if you disconnect.
The script adds no noticeable burden at all to your system.
-d
(--display
) parameter e.g.xrandr -d :0 --output eDP1 --auto
– steeldriver Mar 25 '16 at 21:40dbus-monitor --profile "type='signal'" | grep '.*MonitorChanged.*'
command see if it detects MonitorChanged signal when you disable that signal and let me know. ( You can use Ctrl + C to stop that command by the way ) – Sergiy Kolodyazhnyy Mar 25 '16 at 21:57xrandr: Configure crtc 0 failed
when running that. The-d :0
works in a display-enabled console though. – Justin Abrahms Mar 25 '16 at 22:05