14 lines
280 B
Bash
14 lines
280 B
Bash
|
#!/bin/sh
|
||
|
Xephyr :1 -ac -dpi 107 -fullscreen -resizeable & # -dpi 180 -screen 1920x1080 &
|
||
|
# sleep 2
|
||
|
DISPLAY=:1 tym --daemon &
|
||
|
sleep 1
|
||
|
DISPLAY=:1 xrdb -load $HOME/.Xresources
|
||
|
DISPLAY=:1 ~/sources/duskwm/dusk/dusk &
|
||
|
# sleep 1
|
||
|
# DISPLAY=:1 duskc run_command xrdb
|
||
|
|
||
|
wait
|
||
|
|
||
|
pkill Xephyr
|