sbmpost / AutoRaise

AutoRaise (and focus) a window when hovering over it with the mouse
GNU General Public License v3.0
1.48k stars 60 forks source link

I cant turn off raise #122

Closed consaltus closed 1 year ago

consaltus commented 1 year ago

Hello! First of all, thanks for this great soft! I just migrated from WIN, and this is a very important soft for me.

So I try to disable the raise function. I need autofocus, but I don't need the raise. Am I correct to understand that I must use -delay 0? If yes this isn't working for me. CleanShot 2023-01-12 at 12 53 23

sbmpost commented 1 year ago

@consaltus Please take note of the following remark in the readme:

Note: focusDelay is only supported when compiled with the "EXPERIMENTAL_FOCUS_FIRST" flag.

After compiling with that flag, try with:

-delay 0 -focusDelay 1

With meaning:

0 = disabled 
1 = no delay (asap)
>1 = delay

Sidenote: there is also a binary GUI version with the above compilation flag already enabled. If you want to use that version, check out the section "quick start" of the readme.

consaltus commented 1 year ago

I found! Thank you!!!