refactor slm default

This commit is contained in:
thek4n 2025-05-15 16:22:09 +03:00
parent e09b56351d
commit a237eab58f

View File

@ -1,5 +1,10 @@
#!/bin/sh #!/bin/sh
xrandr --output DVI-D-0 --off \
--output HDMI-0 --mode 1920x1080 --pos 0x-1080 --rotate normal \ readonly PRIMARY="DP-0"
--output DP-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal \ readonly RESOLUTION="1920x1080"
--output DP-1 --off
xrandr \
--output "${PRIMARY}" --primary --mode "${RESOLUTION}" -r 60 --pos 0x0 --rotate normal \
--output HDMI-0 --mode "${RESOLUTION}" -r 60 --right-of "${PRIMARY}" --rotate normal \
--output DP-1 --off \
--output DVI-D-0 --off