arivas_2005 wrote: Sun Jan 10, 2021 8:03 pmWhat do I need to modify for it to work
First of all your expectations. You cannot open a ROX-Filer window and hide it from the beginning. When you open it, It will be visible.
Wmctrl can then hide this visible window and move it and make it visible again, but you will always see the unhidden window at the start, and this will cause a flicker. So is this really what you want to do?
rox "$esexfat1" &
Wmctrl will not work because it will not yet "see" your window unless you remove the trailing '&'.
abiertal=`wmctrl -lp | grep -e $esexfat1 | grep -e "+AT" | tr -s " " " " | cut -d" " -f1 |sed 's/^ *//g' | sed 's/ *$//'``
Much too complicated, but let's assume that this monster works. It's also an unreliable way to fetch the window ID, but let's also assume, that this works.
wmctrl -i -r $abiertal -b remove,hidden,toggle,shaded
toggle,shaded will not work because it needs a separate wmctrl command
wmctrl -a -i $abiertal
Will not work because of syntax error. Instead of '-a -i' should be '-i -a'. Not a big problem. Telling wmctrl to go to the current desktop, i.e. the desktop that you are already looking at, and activate a window that is already activated makes no sense anyway