aboutsummaryrefslogtreecommitdiff
path: root/initialLayout.sh
blob: 35132a8360ccf8cc26c1618427b5d8759cd24009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

hdmiConnected=""
xrandr | grep 'HDMI.* connected' && hdmiConnected="y"

if [ -n "$hdmiConnected" ]; then

	"$HOME/.screenlayout/hdmi1080p.sh"

	if pgrep -x bspwm; then
		bspc monitor '^2' -f
	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 &

if pgrep -x i3 && [ -n "$hdmiConnected" ]; then
	sleep 1
	i3-msg move workspace number 1:💻
	i3-msg workspace number 1:💻
fi