mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
193 B
Bash
Executable File
14 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function cleanup {
|
|
echo "cleaning up!"
|
|
xeph_qtile=0
|
|
}
|
|
|
|
xeph_qtile=1
|
|
Xephyr -br -ac -noreset -screen 800x600 :1 &
|
|
export DISPLAY=:1
|
|
qtile start &
|
|
|
|
trap cleanup EXIT
|