Hello TCL Family!
I hope all is well. I am trying to run Sway on TCL CorePure64 15.x on a QEMU VM and I am running into some issues. I have the Sway TCE and Sway-dot TCE installed and loaded. I wrote a small startup script called start-wl and placed it in ~/.local/bin to start up Sway. The script looks like this:
#/bin/sh
tce-load -i sway sway-dot
# set env
read USER < /etc/sysconfig/tcuser
if [ ! -d /run/user/$(id -u "$USER") ]; then
mkdir -p /run/user/$(id -u "$USER")
chown "$USER:staff /run/user/$(id -u "$USER")
chmod 700 /run/user/$(id -u "$USER")
fi
sudo seatd -g staff -n /run/seatd.sock &
export XDG_RUNTIME_DIR=/run/user/$(id -u)
exec sway
The issues I am facing are as follows: 1) whenever I run the script and Sway starts, I am able to use the keybindings but if, lets say I do a Super + a and open the Apps browser application, I am unable to click on anything. In other words, my mouse is unable to click on any links or any buttons or anything. Only my keyboard works. 2) when I do a pkill sway and kill the Sway process, I see the following error: [seatd/seatd.c:198 could not write readiness signal: Bad file descriptor]
I have no idea how to fix these two issues and I would greatly appreciate it if someone could help me with these issues. Also, would the same issues occur if I decide to install TCL on my bare metal laptop instead of a VM?
Thank you!