You are not logged in.
Hello,
I am using wayland with weston on archlinux. I want to run xrdb .Xresources automatically after weston-launch.
Tried this in my .zshrc
if [ "$(tty)" = "/dev/tty1" -o "$(tty)" = "/dev/vc/1" ] ; then
weston-launch &; {sleep 5 && xrdb ~/.Xresources}
fibut this executes xrdb .Xresources in tty1. How can I make xrdb .Xresources run inside the new weston session?
Offline
xrdb takes the common -display switch, but you'll need a running xwayland server (and pre-know it's display, try ":0")
Sidenote: stray semicolon.
Offline