| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| linux:notes:xorg.conf_snippets [2026/04/25 04:55] – [Xfce HDMI TODO] Sean Rhone | linux:notes:xorg.conf_snippets [2026/05/10 01:41] (current) – [HP S2031] Sean Rhone |
|---|
| |
| * [[devices:displays:hp_s2031|Notes]] | * [[devices:displays:hp_s2031|Notes]] |
| | * ''HDMI1'' (no-dash) = [[#intel|Intel]] DDX |
| |
| sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-monitor-custom.conf' | sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-monitor-custom.conf' |
| ===== intel ===== | ===== intel ===== |
| |
| sudo apt install 'xserver-xorg-video-intel' | sudo zypper install 'xf86-video-intel' |
| |
| sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-graphics-custom.conf' | sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-graphics-custom.conf' |
| **** | **** |
| |
| sudo apt install 'xserver-xorg-input-evdev' | sudo zypper install 'xf86-input-evdev' |
| |
| ==== Keyboard ==== | ==== Keyboard ==== |
| * :!: Not ''evdev'' like the above | * :!: Not ''evdev'' like the above |
| |
| sudo apt install 'xserver-xorg-input-synaptics' | sudo zypper install 'xf86-input-synaptics' |
| |
| sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-touchpad-custom.conf' | sudo mkdir -p '/etc/X11/xorg.conf.d' && sudo -e '/etc/X11/xorg.conf.d/10-touchpad-custom.conf' |
| |
| # End</code> | # End</code> |
| |
| ====== Xfce HDMI TODO ====== | |
| |
| <code> | |
| #!/bin/bash | |
| |
| '/usr/bin/xrandr' --output 'HDMI1' --set 'Broadcast RGB' 'Full' | |
| '/usr/bin/xrandr' --output 'HDMI1' --set 'content type' 'Game' | |
| '/usr/bin/xrandr' --output 'HDMI1' --set 'Colorspace' 'opRGB' | |
| '/usr/bin/xrandr' --output 'HDMI1' --set 'audio' 'force-dvi' | |
| |
| # End | |
| |
| '/usr/bin/xrandr' --output 'HDMI1' --set 'Broadcast RGB' 'Full' --set 'content type' 'Game' --set 'Colorspace' 'opRGB' --set 'audio' 'force-dvi' --set 'max bpc' '8' | |
| |
| xfce4-session-settings | |
| |
| '/usr/bin/bash' -c "'/usr/bin/xrandr' --output 'HDMI1' --set 'Broadcast RGB' 'Full' --set 'content type' 'Game' --set 'Colorspace' 'opRGB' --set 'audio' 'force-dvi' --set 'max bpc' '8'" | |
| |
| |
| '/usr/bin/bash' -c "'/usr/bin/xrandr' --output 'HDMI1' --set 'Broadcast RGB' 'Full' && '/usr/bin/xrandr' --output 'HDMI1' --set 'content type' 'Game' && '/usr/bin/xrandr' --output 'HDMI1' --set 'Colorspace' 'opRGB'" | |
| |
| '/usr/bin/bash' -c "~/'.local/scripts/xrandr-HDMI.sh'" | |
| |
| '/usr/bin/bash' -c "'/usr/bin/xfce4-terminal' -T 'openSUSE Updater' -I '/usr/share/icons/hicolor/scalable/apps/distributor.svg' -e ~/'.local/scripts/opensuse-updater.sh'"</code> | |
| |