This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/scripts/xwin

20 lines
291 B
Bash
Executable File

#!/bin/sh
SIZE=$(swaymsg -t get_outputs |
jq -r '.[]|select(.active=true).rect |
[.width, .height] | join("x")')
TMP_DISPLAY=":999"
Xephyr -screen "$SIZE" "$TMP_DISPLAY" &
export DISPLAY="$TMP_DISPLAY"
unset WAYLAND_DISPLAY I3SOCK
sleep 1s
i3 &
sleep 1s
terminal &
wait