# Linux ## Ubuntu 18.04 ```bash xrandr --newmode "2560x1080" 159.84 2560 2567 2591 2720 1080 1083 1093 1119 +hsync +vsync xrandr --addmode HDMI-1 2560x1080 xrandr --output HDMI-1 --mode 2560x1080 ``` Create file in HOME `~/.xprofile` ## Ubuntu 16.04 ```bash xrandr --newmode "2560x1080" 159.84 2560 2567 2591 2720 1080 1083 1093 1119 +hsync +vsync xrandr --addmode HDMI1 2560x1080 xrandr --output HDMI1 --mode 2560x1080 ``` Create file `/etc/X11/xorg.conf.d/10-monitor.conf` ```ini Section "Monitor" Identifier "HDMI1" Modeline "2560x1080" 159.84 2560 2567 2591 2720 1080 1083 1093 1119 +hsync +vsync Option "PreferredMode" "2560x1080" EndSection Section "Screen" Identifier "Screen0" Monitor "HDMI1" DefaultDepth 24 SubSection "Display" Modes "2560x1080" EndSubSection EndSection Section "Device" Identifier "Device0" Driver "intel" EndSection ```