summaryrefslogtreecommitdiff
path: root/dockd.sh
blob: b77494dfecb27b865c4493ed7b71da88fd1e1910 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
#set -x

# To dock:
# - set DP-2 (external monitor) to primary output
# - restart i3 to get scaling correct via themer
# - set default sound unit to external speakers
# - disable laptop lid close sleep
# - disable auto locking and sleeping
dock() {
	notify-send Docking...
	xrandr \
		--output DP-0 --off \
		--output DP-1 --off \
		--output DP-2 --primary --mode 2560x1440 --pos 0x0 --rotate normal --dpi 96 \
		--output DP-3 --off \
		--output DP-4 --off \
		--output VGA-0 --off 
	themer.sh -r
	sysctl hw.snd.default_unit=1
	doas sysctl hw.acpi.lid_switch_state=NONE
	killall xautolock 
	notify-send Docked.
}

# To un-dock: 
# - set DP-3 (internal screen) to primary output
# - restart i3 to get scaling correct via themer
# - set default sound unit to builtin speakers
# - enable laptop lid close sleep
# - enable auto locking and sleeping
undock() {
	notify-send Undocking...
	xrandr \
		--output DP-0 --off \
		--output DP-1 --off \
		--output DP-2 --off \
		--output DP-3 --primary --mode 1920x1080 --transform none --pos 0x0 --rotate normal --dpi 96 \
		--output DP-4 --off \
		--output VGA-0 --off 
	themer.sh -r
	sysctl hw.snd.default_unit=4
	doas sysctl hw.acpi.lid_switch_state=S3
	killall xautolock
	xautolock \
		-killtime 10 \
		-killer "sleep 0.5; doas acpiconf -s3" \
		-notify 10 \
		-time 10 \
		-locker "i3lock -n -f -c 000000 -i ~/.local/share/wallpapers/lock.png; sleep 0.2" \
		-notifier "notify-send -t=10000 '10 seconds to lock...'" &
	notify-send Undocked
}

contains() {
	string="$1"
	sub="$2"
	[ "${string#*$sub}" != "$string" ] && return 0 || return 1
}

# start assuming undocked
undock

while sleep 5
do
	xrandr=$(xrandr)

	# if DP-2 is disconnected and primary then undock 
	contains "$xrandr" "DP-2 disconnected primary" \
		&& undock \
		&& continue
	# if DP-2 is connected but isn't primary then dock
	contains "$xrandr" "DP-3 connected primary" \
		&& contains "$xrandr" "DP-2 connected" \
		&& dock 
done