10 lines
153 B
Bash
10 lines
153 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
swaymsg -t get_outputs|grep 'eDP-1' > /dev/null
|
||
|
|
||
|
if [ $? == 0 ]; then
|
||
|
swaymsg focus output eDP-1
|
||
|
else
|
||
|
swaymsg focus output HDMI-A-3
|
||
|
fi
|