From: <dom...@us...> - 2014-10-07 15:37:32
|
Revision: 641 http://sourceforge.net/p/fvwm-crystal/code/641 Author: dominique_libre Date: 2014-10-07 15:37:22 +0000 (Tue, 07 Oct 2014) Log Message: ----------- functions/Fullscreen: Disappear: fix the window ids. Modified Paths: -------------- ChangeLog fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2014-10-07 15:34:20 UTC (rev 640) +++ ChangeLog 2014-10-07 15:37:22 UTC (rev 641) @@ -11,6 +11,7 @@ functions/Preferences-Menu: Add prefrences for URxvtD and XDG menu - the XDG menu generate a lot of image magick related errors, so I added a preference to not have it by default. + preferences/XDGMenu: pref file, default to no. + functions/Fullscreen: Disappear: fix the window ids. Vendredi 2 mai 2014 Dominique Michel + addons/makecrystalicon: make fvwm-crystal icons from arbitrary image files. Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2014-10-07 15:34:20 UTC (rev 640) +++ fvwm/components/functions/Fullscreen 2014-10-07 15:37:22 UTC (rev 641) @@ -72,13 +72,13 @@ DestroyFunc Disappear AddToFunc Disappear # if FS; then if !State20; then show; else hide all; fi -+ I PipeRead 'if [ "$(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null)" != "" ]; then \ - for i in $(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null); \ ++ I PipeRead 'if [ "$(ls $[infostore.TmpDirectory]/fullscreen.19.0x?*.$[page.nx].$[page.ny].tmp 2>/dev/null)" != "" ]; then \ + for i in $(ls $[infostore.TmpDirectory]/fullscreen.19.0x?*.$[page.nx].$[page.ny].tmp 2>/dev/null); \ do file=`echo "${i}"|sed -e \'s:fullscreen.19:fullscreen.20:\'`; \ if [ -e "${file}" ]; then echo "WindowId $(echo $file | cut -d . -f 3) Disappear-Off"; exit; \ fi; \ done; \ - for i in $(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null); \ + for i in $(ls $[infostore.TmpDirectory]/fullscreen.19.0x?*.$[page.nx].$[page.ny].tmp 2>/dev/null); \ do echo "WindowId $(echo $i | cut -d . -f 3) Disappear-On"; done; fi' # disappear {{{2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |