From 0632591996893fe136a1f2fe44d9b9f404f41f3e Mon Sep 17 00:00:00 2001 From: Harald Pfeiffer Date: Thu, 1 Nov 2018 13:30:58 +0100 Subject: Initial commit --- localfs/etc/X11/xorg.conf.d/00-keyboard.conf | 9 ++++++ localfs/etc/X11/xorg.conf.d/20-displaylink.conf | 38 +++++++++++++++++++++++++ localfs/etc/X11/xorg.conf.d/20-intel.conf | 13 +++++++++ localfs/etc/X11/xorg.conf.d/80-backlight.conf | 5 ++++ 4 files changed, 65 insertions(+) create mode 100644 localfs/etc/X11/xorg.conf.d/00-keyboard.conf create mode 100644 localfs/etc/X11/xorg.conf.d/20-displaylink.conf create mode 100644 localfs/etc/X11/xorg.conf.d/20-intel.conf create mode 100644 localfs/etc/X11/xorg.conf.d/80-backlight.conf (limited to 'localfs/etc/X11/xorg.conf.d') diff --git a/localfs/etc/X11/xorg.conf.d/00-keyboard.conf b/localfs/etc/X11/xorg.conf.d/00-keyboard.conf new file mode 100644 index 0000000..7e5c389 --- /dev/null +++ b/localfs/etc/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,9 @@ +# Written by systemd-localed(8), read by systemd-localed and Xorg. It's +# probably wise not to edit this file manually. Use localectl(1) to +# instruct systemd-localed to update it. +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "on" + Option "XkbLayout" "de,ie,bg,de" + Option "XkbVariant" ",,phonetic,ru" +EndSection diff --git a/localfs/etc/X11/xorg.conf.d/20-displaylink.conf b/localfs/etc/X11/xorg.conf.d/20-displaylink.conf new file mode 100644 index 0000000..9d2cfa8 --- /dev/null +++ b/localfs/etc/X11/xorg.conf.d/20-displaylink.conf @@ -0,0 +1,38 @@ +Section "Device" + Identifier "intel" + Driver "modesetting" + Option "kmsdev" "/dev/dri/card0" + Option "PageFlip" "off" + Option "SWCursor" "on" + Option "ShadowFB" "true" +EndSection + +Section "Device" + Identifier "USB3" + BusID "USB" + Driver "modesetting" + Option "kmsdev" "/dev/dri/card1" + Option "PageFlip" "off" + Option "SWCursor" "on" + Option "ShadowFB" "true" +EndSection + +Section "Device" + Identifier "USB3" + BusID "USB" + Driver "modesetting" + Option "kmsdev" "/dev/dri/card2" + Option "PageFlip" "off" + Option "SWCursor" "on" + Option "ShadowFB" "true" +EndSection + +Section "Device" + Identifier "USB3" + BusID "USB" + Driver "modesetting" + Option "kmsdev" "/dev/dri/card3" + Option "PageFlip" "off" + Option "SWCursor" "on" + Option "ShadowFB" "true" +EndSection diff --git a/localfs/etc/X11/xorg.conf.d/20-intel.conf b/localfs/etc/X11/xorg.conf.d/20-intel.conf new file mode 100644 index 0000000..bbe28f3 --- /dev/null +++ b/localfs/etc/X11/xorg.conf.d/20-intel.conf @@ -0,0 +1,13 @@ +Section "Device" +Identifier "Intel Graphics" +Driver "Intel" +Option "AccelMethod" "sna" +Option "TearFree" "false" +Option "TripleBuffer" "true" +Option "MigrationHeuristic" "greedy" +Option "Tiling" "true" +Option "Pageflip" "true" +Option "ExaNoComposite" "false" +Option "Tiling" "true" +Option "Pageflip" "true" +EndSection diff --git a/localfs/etc/X11/xorg.conf.d/80-backlight.conf b/localfs/etc/X11/xorg.conf.d/80-backlight.conf new file mode 100644 index 0000000..0291612 --- /dev/null +++ b/localfs/etc/X11/xorg.conf.d/80-backlight.conf @@ -0,0 +1,5 @@ +Section "Device" + Identifier "Intel Graphics" + Driver "intel" + Option "Backlight" "/sys/class/backlight" +EndSection -- cgit v1.2.3