[Решено] Вывод видео на TV по HDMI

Добрый день!
Помогите настроить вывод видео на телевизор по HDMI.
Сейчас при подключении в режиме зеркального отражания получаю разрешение 1024x768.
Если сменить на режим сбоку и выбрать разрешения, то получаю рябящую картину.

Что имеем:
HP ProBook 4530s
Radeon HD 6400M/7400M Series (драйвер catalist-pxp)
Gnome-Shell

Если выполнить
# xrandr --output HDMI1 --mode 1280x720
получается нормальная картинка, но с обрезанными краями.

$ xrandr
Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
LVDS1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
   1366x768       60.0*+
   1024x768       60.0
   800x600        60.3     56.2
   640x480        59.9
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 16mm x 9mm
   1920x1080i     60.1 +   50.0
   1920x1080      24.0
   1280x720       50.0*    60.0
   1440x576i      50.1
   1024x768       75.1     70.1     60.0
   1440x480i      60.1     60.1
   832x624        74.6
   800x600        72.2     75.0     60.3     56.2
   720x576        50.0
   720x480        59.9
   640x480        72.8     75.0     66.7     60.0     59.9
DP1 disconnected (normal left inverted right x axis y axis)

Сгенерированный xorg.conf командой # aticonfig --initial=dual-head --screen-layout=left :

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Screen         "aticonfig-Screen[0]-1" LeftOf "aticonfig-Screen[0]-0"
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "POWERXPRESS_AI" ""
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-1"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-1"
	Device     "aticonfig-Device[0]-1"
	Monitor    "aticonfig-Monitor[0]-1"
	DefaultDepth	24
	SubSection "Display"
		Viewport   0 0
		Depth	24
	EndSubSection
EndSection

Section "DRI"
	Mode         0666
EndSection
Решилось вот таким скриптом:
#!/bin/bash

IN="LVDS1"
EXT="HDMI1"

if (xrandr | grep "$EXT disconnected"); then
    xrandr --output $IN --auto --output $EXT --off
else
#    xrandr --output $IN --mode 1366x768 --primary --output $EXT --mode 1280x720 --scale "1.065x1.065"                          # клон
    xrandr --output $IN --mode 1366x768 --primary --output $EXT --mode 1280x720 --scale "1.001x1.001" --right-of $IN      # справа
fi
 
Зарегистрироваться или войдите чтобы оставить сообщение.