nixos/pkgs/writeXrandrScriptBin.nix

14 lines
416 B
Nix
Raw Normal View History

2024-08-17 06:46:33 +00:00
{ writeShellScriptBin }:
2024-08-17 07:14:46 +00:00
name:
writeShellScriptBin name ''
2024-08-17 06:46:33 +00:00
xrandr \
--output DP-0 --primary --mode 1920x1080 --pos 1920x1080 --rotate normal \
--output HDMI-0 --mode 1920x1080 --pos 0x1080 --rotate normal \
--output HDMI-1 --mode 1920x1080 --pos 1920x0 --rotate normal \
--output DP-1 --off \
--output DP-2 --off \
--output DP-3 --off \
--output DP-4 --off \
--output DP-5 --off
''