From: <dom...@us...> - 2015-06-08 14:36:56
|
Revision: 690 http://sourceforge.net/p/fvwm-crystal/code/690 Author: dominique_libre Date: 2015-06-08 14:36:54 +0000 (Mon, 08 Jun 2015) Log Message: ----------- Fix non wanted full screen fvwm scripts in conjunction with the automatic full screen preference Modified Paths: -------------- ChangeLog fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2015-06-04 19:51:04 UTC (rev 689) +++ ChangeLog 2015-06-08 14:36:54 UTC (rev 690) @@ -1,7 +1,11 @@ ChangeLog for FVWM-Crystal +lundi 8 juin 2015 + components/Fullscreen: Fix non wanted full screen fvwm scripts in conjunction with the + automatic full screen preference. + jeudi 3 juin 2015 - components/Pteferences-Menu: Fix quoting in Reload-Recipe. + components/Preferences-Menu: Fix quoting in Reload-Recipe. mercredi 2 juin 2015 preferences/DesktopDirs; preferences/IconsDirs: add file name as commented 1st line. Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2015-06-04 19:51:04 UTC (rev 689) +++ fvwm/components/functions/Fullscreen 2015-06-08 14:36:54 UTC (rev 690) @@ -158,26 +158,10 @@ # Start in full screen at application statup DestroyFunc Window-AutoFS AddToFunc Window-AutoFS -PipeRead 'while read myline; do echo "+ I ThisWindow (${myline}) Fullscreen"; done < $[FVWM_USERDIR]/preferences/FullScreenApps|grep -v \\#' +PipeRead 'while read myline; do if [ "${myline}" != "" ]; then echo "+ I ThisWindow (${myline}) Fullscreen"; fi; done < $[FVWM_USERDIR]/preferences/FullScreenApps|grep -v \\#' DestroyModuleConfig FvwmEvent-Window-Fullscreen-Auto: * *FvwmEvent-Window-FullScreen-Auto: add_window Window-AutoFS Module FvwmEvent FvwmEvent-Window-Fullscreen-Auto # vim:ft=fvwm - - - - - - - - - - - - - - - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |