Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |
| linux:notes:xorg.conf_snippets [2026/04/25 04:55] – [Xfce HDMI TODO] Sean Rhone | linux:notes:xorg.conf_snippets [2026/04/25 06:54] (current) – Sean Rhone |
|---|
| |
| # 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> | |
| |