Telegram desktop identifying Qubes in StandaloneVM

I’ve updated instructions to this:

To do this automatically on VM boot run these in the VM:

Create the service file:

mkdir -p /home/user/.config/systemd/user
cat > /home/user/.config/systemd/user/wmname.service <<EOF
[Unit]
Description=Change WM name
After=default.target

[Service]
Type=oneshot
Environment=XDG_RUNTIME_DIR=/run/user/$(id -u user)
ExecStart=/usr/bin/xprop -id 0x400002 -format _NET_WM_NAME 8u -set _NET_WM_NAME 'dwm'

[Install]
WantedBy=default.target
EOF

Reload and test:

systemctl --user daemon-reload
systemctl --user enable wmname.service
systemctl --user start wmname.service
xprop -id 0x400002 _NET_WM_NAME