mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
203 B
Bash
14 lines
203 B
Bash
|
#!/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
|
||
|
stumpwm &
|
||
|
|
||
|
trap cleanup EXIT
|