diff options
author | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
commit | 0632591996893fe136a1f2fe44d9b9f404f41f3e (patch) | |
tree | 7340edbe7c212da3db45a83219147143a3268c8d /localfs/etc/X11 | |
download | fedora-laptop-0632591996893fe136a1f2fe44d9b9f404f41f3e.tar.bz2 |
Initial commit
Diffstat (limited to 'localfs/etc/X11')
-rw-r--r-- | localfs/etc/X11/xorg.conf.d/00-keyboard.conf | 9 | ||||
-rw-r--r-- | localfs/etc/X11/xorg.conf.d/20-displaylink.conf | 38 | ||||
-rw-r--r-- | localfs/etc/X11/xorg.conf.d/20-intel.conf | 13 | ||||
-rw-r--r-- | localfs/etc/X11/xorg.conf.d/80-backlight.conf | 5 |
4 files changed, 65 insertions, 0 deletions
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 |