From 55197a629ff70f1e74c1e63058c7942900d3642b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 26 Dec 2021 20:09:20 -0300 Subject: [PATCH] Add other files (/etc only for now) --- other/etc/X11/xorg.conf.d/00-keyboard.conf | 13 +++++++++ other/etc/X11/xorg.conf.d/01-mouse.conf | 10 +++++++ other/etc/X11/xorg.conf.d/10-monitor.conf | 34 ++++++++++++++++++++++ other/etc/X11/xorg.conf.d/12-module.conf | 7 +++++ other/etc/X11/xorg.conf.d/15-server.conf | 16 ++++++++++ other/etc/X11/xorg.conf.d/5-device.conf | 8 +++++ 6 files changed, 88 insertions(+) create mode 100644 other/etc/X11/xorg.conf.d/00-keyboard.conf create mode 100644 other/etc/X11/xorg.conf.d/01-mouse.conf create mode 100644 other/etc/X11/xorg.conf.d/10-monitor.conf create mode 100644 other/etc/X11/xorg.conf.d/12-module.conf create mode 100644 other/etc/X11/xorg.conf.d/15-server.conf create mode 100644 other/etc/X11/xorg.conf.d/5-device.conf diff --git a/other/etc/X11/xorg.conf.d/00-keyboard.conf b/other/etc/X11/xorg.conf.d/00-keyboard.conf new file mode 100644 index 0000000..c7cc04e --- /dev/null +++ b/other/etc/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,13 @@ +Section "InputClass" + Identifier "Keyboard0" + MatchIsKeyboard "on" + Option "XkbLayout" "us" + Option "XkbModel" "pc105" + Option "XkbVariant" "intl-unicode" +EndSection + +# Config created by Nvidia... +# Section "InputDevice" +# Identifier "Keyboard0" +# Driver "kbd" +# EndSection diff --git a/other/etc/X11/xorg.conf.d/01-mouse.conf b/other/etc/X11/xorg.conf.d/01-mouse.conf new file mode 100644 index 0000000..bea5ad5 --- /dev/null +++ b/other/etc/X11/xorg.conf.d/01-mouse.conf @@ -0,0 +1,10 @@ +# Config by Nvidia. I dont think I need it because of piper... +# Section "InputDevice" +# Identifier "Mouse0" +# Driver "mouse" +# Option "Protocol" "auto" +# Option "Device" "/dev/psaux" +# Option "Emulate3Buttons" "no" +# Option "ZAxisMapping" "4 5" +# EndSection + diff --git a/other/etc/X11/xorg.conf.d/10-monitor.conf b/other/etc/X11/xorg.conf.d/10-monitor.conf new file mode 100644 index 0000000..e06db43 --- /dev/null +++ b/other/etc/X11/xorg.conf.d/10-monitor.conf @@ -0,0 +1,34 @@ +Section "Monitor" + Identifier "DVI" + ModelName "LG Electronics MP59G" + HorizSync 30.0 - 85.0 + VertRefresh 40.0 - 75.0 + #Option "Primary" "true" + Option "DPMS" +EndSection + +#Section "Monitor" +# Identifier "HDMI-0" +# ModelName "LG Electronics M2380A" +# HorizSync 28.0 - 83.0 +# VertRefresh 48.0 - 61.0 +# Option "RightOf" "DVI-D-0" +#EndSection + +Section "Screen" + Identifier "Screen0" + Device "Device0" + Monitor "DVI" + DefaultDepth 24 + Option "Stereo" "0" + Option "nvidiaXineramaInfoOrder" "DFP-0" + #Option "metamodes" "nvidia-auto-select +0+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}" + Option "metamodes" "DVI-D-0: nvidia-auto-select +0+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, HDMI-0: nvidia-auto-select +1920+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}" + #Option "metamodes" "HDMI-0: nvidia-auto-select +1920+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, DVI-D-0: nvidia-auto-select +0+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}" + Option "SLI" "Off" + Option "MultiGPU" "Off" + Option "BaseMosaic" "off" + SubSection "Display" + Depth 24 + EndSubSection +EndSection diff --git a/other/etc/X11/xorg.conf.d/12-module.conf b/other/etc/X11/xorg.conf.d/12-module.conf new file mode 100644 index 0000000..894b297 --- /dev/null +++ b/other/etc/X11/xorg.conf.d/12-module.conf @@ -0,0 +1,7 @@ +Section "Module" + Load "dbe" + Load "extmod" + Load "type1" + Load "freetype" + Load "glx" +EndSection diff --git a/other/etc/X11/xorg.conf.d/15-server.conf b/other/etc/X11/xorg.conf.d/15-server.conf new file mode 100644 index 0000000..2c10475 --- /dev/null +++ b/other/etc/X11/xorg.conf.d/15-server.conf @@ -0,0 +1,16 @@ +Section "ServerLayout" + Identifier "Layout0" + Screen 0 "Screen0" 0 0 +# Screen 0 "Screen0" +# Screen 1 "Screen1" RightOf "Screen0" +# InputDevice "Keyboard0" "CoreKeyboard" +# InputDevice "Mouse0" "CorePointer" + Option "Xinerama" "0" +EndSection + +Section "ServerFlags" + Option "StandbyTime" "0" + Option "SuspendTime" "0" + Option "OffTime" "0" + Option "BlankTime" "0" +EndSection diff --git a/other/etc/X11/xorg.conf.d/5-device.conf b/other/etc/X11/xorg.conf.d/5-device.conf new file mode 100644 index 0000000..0916b70 --- /dev/null +++ b/other/etc/X11/xorg.conf.d/5-device.conf @@ -0,0 +1,8 @@ +Section "Device" + Identifier "Device0" + Driver "nvidia" + VendorName "NVIDIA Corporation" + BoardName "NVIDIA GeForce GTX 1060 6GB" + #Option "Monitor-DVI-D-0" "DVI-D-0" + #Option "Monitor-HDMI-0" "HDMI-0" +EndSection