From: <dom...@us...> - 2014-01-08 17:08:45
|
Revision: 582 http://sourceforge.net/p/fvwm-crystal/code/582 Author: dominique_libre Date: 2014-01-08 17:08:42 +0000 (Wed, 08 Jan 2014) Log Message: ----------- functions/Exec-Accelerator: fix for AT function with infostore variable; fix for A functions for the recent change in gnome related terms for their -e syntax... Modified Paths: -------------- ChangeLog fvwm/components/functions/Exec-Accelerator Modified: ChangeLog =================================================================== --- ChangeLog 2014-01-08 14:11:37 UTC (rev 581) +++ ChangeLog 2014-01-08 17:08:42 UTC (rev 582) @@ -5,6 +5,8 @@ Mercredi 8 janvier 2014 Dominique Michel functions/Media: create ~/.mplayer directory if it doesn't exist. + functions/Exec-Accelerator: fix for AT function with infostore variable; fix + for A functions for the recent change in gnome related terms for their -e syntax... Dimanche 5 Janvier 2014 Dominique Michel scripts/KeyModifiersEditor/KeyModifiersEditor: fix the locale aware titles Modified: fvwm/components/functions/Exec-Accelerator =================================================================== --- fvwm/components/functions/Exec-Accelerator 2014-01-08 14:11:37 UTC (rev 581) +++ fvwm/components/functions/Exec-Accelerator 2014-01-08 17:08:42 UTC (rev 582) @@ -50,8 +50,12 @@ # Usage: A [command] [command options] DestroyFunc A AddToFunc A ++ I SetEnv DefaultTerminal $[infostore.DefaultTerminal] + I Window-SetPlacementPolicy -+ I Exec exec $[infostore.DefaultTerminal] -e $* $[infostore.SILENT] ++ I Test (!EnvMatch DefaultTerminal gnome-terminal, !EnvMatch DefaultTerminal multi-gnome-terminal, !EnvMatch DefaultTerminal terminator) Exec exec $[infostore.DefaultTerminal] -e $* $[infostore.SILENT] ++ I TestRc (NoMatch) Exec exec $[infostore.DefaultTerminal] -e "$*" $[infostore.SILENT] ++ I UnsetEnv DefaultTerminal +#+ I Exec exec $[infostore.DefaultTerminal] -e $* $[infostore.SILENT] DestroyFunc AA AddToFunc AA @@ -61,9 +65,11 @@ # Usage: AT [title] [command] (Use quotes if you want command options or title with spaces) DestroyFunc AT AddToFunc AT ++ I SetEnv DefaultTerminal $[infostore.DefaultTerminal] + I Window-SetPlacementPolicy + I Test (!EnvMatch DefaultTerminal gnome-terminal, !EnvMatch DefaultTerminal multi-gnome-terminal, !EnvMatch DefaultTerminal terminator) Exec exec $[infostore.DefaultTerminal] -title "$0" -e $1 $[infostore.SILENT] + I TestRc (NoMatch) Exec exec $[infostore.DefaultTerminal] --title "$0" -e "$1" $[infostore.SILENT] ++ I UnsetEnv DefaultTerminal # Usage: C [command] [command options] DestroyFunc C This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |