From da7beecdd98f24aa7e5edbebdb8276750c09be4f Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Wed, 7 Apr 2021 20:25:18 +0200 Subject: Cleaned initialLayout.sh script. --- initialLayout.sh | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) (limited to 'initialLayout.sh') diff --git a/initialLayout.sh b/initialLayout.sh index 2408911..54d3a98 100755 --- a/initialLayout.sh +++ b/initialLayout.sh @@ -1,15 +1,29 @@ #!/bin/sh -if pgrep -x i3 && xrandr | grep 'HDMI.* connected'; then - i3-msg focus left - i3-msg workspace 3:👾 - i3-msg focus right +hdmiConnected="" +xrandr | grep 'HDMI.* connected' && hdmiConnected="y" + +if [ -n "$hdmiConnected" ]; then + + "$HOME/.screenlayout/hdmi1080p.sh" + + if pgrep -x bspwm; then + bspc monitor -f HDMI-1-1 + fi + + if pgrep -x i3; then + i3-msg focus left + i3-msg workspace 3:👾 + i3-msg focus right + fi + fi +pgrep -x bspwm && bspc desktop -l monocle urxvt -e tmux new -s main & -sleep 1 -if pgrep -x i3 && xrandr | grep 'HDMI.* connected'; then +if pgrep -x i3 && [ -n "$hdmiConnected" ]; then + sleep 1 i3-msg move workspace number 1:💻 i3-msg workspace number 1:💻 fi -- cgit v1.2.1