aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/sway/display-toggle.sh
diff options
context:
space:
mode:
Diffstat (limited to 'home/.config/sway/display-toggle.sh')
-rwxr-xr-xhome/.config/sway/display-toggle.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/home/.config/sway/display-toggle.sh b/home/.config/sway/display-toggle.sh
index c2d2447..24569fc 100755
--- a/home/.config/sway/display-toggle.sh
+++ b/home/.config/sway/display-toggle.sh
@@ -23,15 +23,15 @@ fi
LAPTOP_WIDTH=$(swaymsg -t get_outputs -r | jq -r ".[] | select(.name == \"$LAPTOP\") | .current_mode.width")
[ -z "$LAPTOP_WIDTH" ] && LAPTOP_WIDTH=1920
-# On init, go straight to mirror; otherwise cycle
+# On init, go straight to laptop-off; otherwise cycle
if [ "$1" = "init" ]; then
- NEXT="mirror"
+ NEXT="laptop-off"
else
- CURRENT=$(cat "$STATE_FILE" 2>/dev/null || echo "mirror")
+ CURRENT=$(cat "$STATE_FILE" 2>/dev/null || echo "laptop-off")
case "$CURRENT" in
- mirror) NEXT="laptop-off" ;;
laptop-off) NEXT="side-by-side" ;;
- *) NEXT="mirror" ;;
+ side-by-side) NEXT="mirror" ;;
+ *) NEXT="laptop-off" ;;
esac
fi