2020-11-16 05:53:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-11-17 20:19:08 +00:00
|
|
|
CURRENT=`cat /home/jpm/.spool/last_display`
|
2020-11-16 05:53:09 +00:00
|
|
|
|
2023-11-17 20:19:08 +00:00
|
|
|
if [ "$CURRENT" == "x13" ]; then
|
|
|
|
/home/jpm/scripts/sway/displays.pl Both
|
2020-11-16 05:53:09 +00:00
|
|
|
else
|
2023-11-17 20:19:08 +00:00
|
|
|
/home/jpm/scripts/sway/displays.pl x13
|
2020-11-16 05:53:09 +00:00
|
|
|
fi
|