I have a script, called at login, to move specific applications to their respective workspaces
I want to pin one application to all workspaces. According to the wmctrl man page,
Desktop numbers start at 0. Use -1 to pin to all desktops.
However the command
wmctrl -i -r 0x03800003 -t -1
has no effect. Using positive integers pins the applications correctly.
(I have have obtained the window ID using wmctrl -l)
What am I doing wrong?