2018-02-28 6:14 GMT+10:30 Michelle Konzack <linux4miche...@tamay-dogan.net>: > ...but I found this file is guilty: > > ----[ ~/.fvwm/Functions.d/AutoHide.conf ]------------------------------- > DestroyFunc autohide > AddToFunc autohide > + I ThisWindow ($0) Deschedule $[w.id] > + I ThisWindow ($0) ThisWindow (Shaded) WindowShade off > + I TestRc (!Match) All ($0, !Shaded autohide\_hide $1 $2)
That's the line giving the warning. You are trying to use autohide\_hide $1 $2 as a condition without commas. Try to change it to + I TestRc (!Match) All ($0, !Shaded) autohide\_hide $1 $2 I'm not sure why you need to escape _ in the above code. If it doesn't work still, try to remove the escape as well. /Viktor