From: <dom...@us...> - 2020-10-06 23:11:01
|
Revision: 1044 http://sourceforge.net/p/fvwm-crystal/code/1044 Author: dominique_libre Date: 2020-10-06 23:10:57 +0000 (Tue, 06 Oct 2020) Log Message: ----------- CustomButtonBar: fix typo + multiple trayer instances after redrawing the button Modified Paths: -------------- ChangeLog fvwm/scripts/CustomButtonBar/CustomButtonBar Modified: ChangeLog =================================================================== --- ChangeLog 2020-09-17 02:10:20 UTC (rev 1043) +++ ChangeLog 2020-10-06 23:10:57 UTC (rev 1044) @@ -1,5 +1,9 @@ ChangeLog for FVWM-Crystal +mardi 7 octobre 2020 +fvwm/scripts/CustomButtonBar/CustomButtonBar: fix typo + multiple + trayer instances after redrawing the button. + jeudi 17 septembre 2020 + fvwm/locale/zh_CN*: Add chinese translation. Thanks to 玉堂白鹤 @@ -402,7 +406,7 @@ cleanup, add remaining applets with associated preferences. recipes/Custom: cleanup styles/Applictions-Icons-22-32: add mini icon for start_jack - styles/FVWM: fix trayer styke + styles/FVWM: fix trayer style functions/Exit + scripts/ScreenLidSuspend: add screen lid suspend menu and function. functions/Media-Music-functions: alsaplayer style change Modified: fvwm/scripts/CustomButtonBar/CustomButtonBar =================================================================== --- fvwm/scripts/CustomButtonBar/CustomButtonBar 2020-09-17 02:10:20 UTC (rev 1043) +++ fvwm/scripts/CustomButtonBar/CustomButtonBar 2020-10-06 23:10:57 UTC (rev 1044) @@ -324,6 +324,9 @@ # the Custom recipe is the only one that can have the 2 buttons # and it work as it. # TODO: - Implement the ewmh borders. This will permit to use that button into the other recipes. +if [ "${11}" = "trayer" ]; then + echo 'PipeRead "killall -3 trayer"' >> "${FVWM_USERDIR}/tmp/CustomButtonBar" +fi case $3 in Left) vertical_button $2 $4 @@ -475,7 +478,7 @@ echo "FvwmTrayerPanel pixel pixel $((${ybuttons[0]}*$4)) bottom right 0 0 \"--width $((${xbuttons[0]}*$4))\"" >> "${FVWM_USERDIR}/tmp/CustomButtonBar" ;; esac - echo "*FvwmButtons-CustomBar: (${xbuttons[0]}x${ybuttons[0]}, Frame 0, Padding 0, Swallow (UseOld, FvwmModule) trayer Nop')" >> "${FVWM_USERDIR}/tmp/CustomButtonBar" + echo "*FvwmButtons-CustomBar: (${xbuttons[0]}x${ybuttons[0]}, Frame 0, Padding 0, Swallow (UseOld, FvwmModule) trayer Nop)" >> "${FVWM_USERDIR}/tmp/CustomButtonBar" fi inplacenb="${xbuttons[0]}" fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |