From: <dom...@us...> - 2014-02-17 07:32:41
|
Revision: 604 http://sourceforge.net/p/fvwm-crystal/code/604 Author: dominique_libre Date: 2014-02-17 07:32:39 +0000 (Mon, 17 Feb 2014) Log Message: ----------- functions/NotificationAreaManager-Stalonetray: Fix for alpha transparency Modified Paths: -------------- ChangeLog fvwm/components/functions/NotificationAreaManager-stalonetray Modified: ChangeLog =================================================================== --- ChangeLog 2014-02-15 11:32:33 UTC (rev 603) +++ ChangeLog 2014-02-17 07:32:39 UTC (rev 604) @@ -1,5 +1,10 @@ ChangeLog for FVWM-Crystal +Lundi 17 février 2015 Dominique Michel ++ scripts/FvwmScript-CpuFreq-small: Derived from FvwmScript-CpuFreq. + functions/NotificationAreaManager-Stalonetray: Fix for alpha transparency + which is the inberse of trayer. + Samedi 15 février 2015 Dominique Michel recipes/Default with ACPI: fix for height and scripts colorset on the bottom bar; fix for warning with IconMan-Icons. Modified: fvwm/components/functions/NotificationAreaManager-stalonetray =================================================================== --- fvwm/components/functions/NotificationAreaManager-stalonetray 2014-02-15 11:32:33 UTC (rev 603) +++ fvwm/components/functions/NotificationAreaManager-stalonetray 2014-02-17 07:32:39 UTC (rev 604) @@ -10,7 +10,8 @@ AddToFunc ExitFunction I Exec exec killall stalonetray -PipeRead 'echo "SetEnv TrayerTintS $(echo ${TrayerTint}|sed -e \'s:0x:#:\')"' +PipeRead 'echo "SetEnv TrayerTintS $(echo $[TrayerTint]|sed -e \'s:0[Xx]:#:\')"' +PipeRead 'echo "SetEnv TrayerAlphaS $((256 - $[TrayerAlpha]))"' # Settings of Stalone {{{1 DestroyFunc FvwmStalonePanel @@ -19,8 +20,8 @@ + I *FvwmStalonePanel: Frame 0 + I *FvwmStalonePanel: BoxSize smart + I *FvwmStalonePanel: Font none -+ I *FvwmStalonePanel: ActiveColorset $[infostore.cs_panel_active] -+ I *FvwmStalonePanel: Colorset $[infostore.cs_panel_inactive] ++ I *FvwmStalonePanel: ActiveColorset $[infostore.cs_panel_inactive] ++ I *FvwmStalonePanel: Colorset $[infostore.cs_panel_active] + I *FvwmStalonePanel: Columns 1 + I *FvwmStalonePanel: Rows 1 + I *FvwmStalonePanel: (1x1, Padding 0 0, Swallow (NoClose) "stalonetray" 'Exec exec stalonetray \ @@ -28,7 +29,7 @@ --window-type dock \ --transparent true \ --tint-color \'$[TrayerTintS]\' \ ---tint-level $[TrayerAlpha] \ +--tint-level $[TrayerAlphaS] \ --no-shrink true \ --kludges force_icons_size \ --icon-size $[0] \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |