From 3882a03aad90e53be501cf5097750d07d7e5740d Mon Sep 17 00:00:00 2001 From: committer Date: Wed, 12 Jun 2024 15:55:57 -0500 Subject: [PATCH] u --- dots/bash/.bashrc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dots/bash/.bashrc b/dots/bash/.bashrc index 7a10b47..f99d2c1 100644 --- a/dots/bash/.bashrc +++ b/dots/bash/.bashrc @@ -123,13 +123,14 @@ rshift() { # display setup ds11() { + info="1 laptop + 1 monitor" if [[ $1 == "info" ]] ; then - echo "1 laptop + 1 monitor" + echo "${info}" else - echo "2" -# xrandr --output eDP-1 --mode 1920x1080 --pos 0x1080 --rotate normal --output DP-1 --off --output HDMI-1 --primary --mode 3840x2160 --pos 1920x0 --rotate normal --output DP-2 --off --output HDMI-2 --off --output DP-3 --off --output HDMI-3 --off > /dev/null 2>&1 -# nr -# xrdb ~/.Xresources + echo "${info}" + xrandr --output eDP-1 --mode 1920x1080 --pos 0x1080 --rotate normal --output DP-1 --off --output HDMI-1 --primary --mode 3840x2160 --pos 1920x0 --rotate normal --output DP-2 --off --output HDMI-2 --off --output DP-3 --off --output HDMI-3 --off > /dev/null 2>&1 + nr + xrdb ~/.Xresources fi }