blob: e8c850590e32e521d2f4b60f0a86358834f842a3 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
at_home=$(swaymsg -t get_outputs | grep 'TH7AA0012451')
if [ -n "$at_home" ]; then
swaymsg output VGA-1 enable scale 1.5
swaymsg output LVDS-1 disable
swaymsg workspace number 1
fi;
|