From: <dom...@us...> - 2015-10-01 09:34:56
|
Revision: 715 http://sourceforge.net/p/fvwm-crystal/code/715 Author: dominique_libre Date: 2015-10-01 09:34:53 +0000 (Thu, 01 Oct 2015) Log Message: ----------- Auto FS: add condition to not put if full screen the transient windows Modified Paths: -------------- ChangeLog fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2015-09-28 13:53:03 UTC (rev 714) +++ ChangeLog 2015-10-01 09:34:53 UTC (rev 715) @@ -3,6 +3,9 @@ Version 3.4.0 ------------- +Jeudi 1 octobre 2015 + functions/Fullscreen: Auto FS: add condition to not put if full screen the transient windows. + Lundi 28 septembre 2015 functions/Fullscreen: change the delay to put firefox in full screen from 5 to 10 sec. Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2015-09-28 13:53:03 UTC (rev 714) +++ fvwm/components/functions/Fullscreen 2015-10-01 09:34:53 UTC (rev 715) @@ -160,8 +160,8 @@ AddToFunc Window-AutoFS PipeRead 'while read myline; do if [ "${myline}" != "" ]; then \ if [ "${myline}" == "Firefox" ]; \ - then echo "+ I ThisWindow (${myline}) Schedule 10000 Fullscreen"; \ - else echo "+ I ThisWindow (${myline}) Fullscreen"; \ + then echo "+ I ThisWindow (${myline}, !Transient) Schedule 10000 Fullscreen"; \ + else echo "+ I ThisWindow (${myline}, !Transient) Fullscreen"; \ fi; fi; done < $[FVWM_USERDIR]/preferences/FullScreenApps|grep -v \\#' DestroyModuleConfig FvwmEvent-Window-Fullscreen-Auto: * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |