dotfiles/.config/qtile/xephyr.sh
2021-11-17 21:48:21 -08:00

14 lines
207 B
Bash
Executable File

#!/usr/bin/env bash
function cleanup {
echo "cleaning up!"
export xeph_qtile=0
}
export xeph_qtile=1
Xephyr -br -ac -noreset -screen 800x600 :1 &
export DISPLAY=:1
qtile start &
trap cleanup EXIT