dotfiles/.config/qtile/xephyr.sh

14 lines
207 B
Bash
Raw Normal View History

2021-10-15 09:15:30 -07:00
#!/usr/bin/env bash
function cleanup {
echo "cleaning up!"
2021-11-17 21:48:21 -08:00
export xeph_qtile=0
2021-10-15 09:15:30 -07:00
}
2021-11-17 21:48:21 -08:00
export xeph_qtile=1
2021-10-15 09:15:30 -07:00
Xephyr -br -ac -noreset -screen 800x600 :1 &
export DISPLAY=:1
qtile start &
trap cleanup EXIT