Le Mon, 16 Apr 2007 00:00:14 +0200,
Maciej Delmanowski <[EMAIL PROTECTED]> a écrit :

> On kwi 15, Dominique Michel wrote:
> > I just send a patch with a few new files and a modified Default recipe. It
> > is an initial import of a preference setting for trayer-stalonetray and a
> > modified Default recipe to try it.
> 
> Where are you sending your patches? I don't see them on the list, and nothing
> new in my inbox... You can send them directly from darcs (if your sendmail is
> working) to my mail address, or, I suppose, on the mailing list, if it's OK
> with the rest of the users.
> 
> Cheers,
> harnir

Strange. I do exactly the same as before. I resend it, and for security, I send
it to the list too.

Dominique

New patches:

[Initial import of preference setting for the trayer with a modified version of the Default recipe.
[EMAIL PROTECTED] {
addfile ./fvwm/components/functions/Trayer-stalonetray
addfile ./fvwm/components/functions/Trayer-trayer
addfile ./fvwm/preferences/TrayerManager
hunk ./fvwm/components/desktop/FVWM-Crystal_Preferences 17
+
+# Load selected "trayer manager"
+LoadPreferences TrayerManager
hunk ./fvwm/components/functions/Preferences-Menu 11
++ '%22x22/fvwm-crystal/trayer-app.png%$[gt.Traer manager]'		Popup /preferences/TrayerManager
hunk ./fvwm/components/functions/Preferences-Menu 51
+#
+# Trayer Application
+#
+DestroyMenu /Preferences/TrayerManager
+AddToMenu /Preferences/TrayerManager
+Test (x trayer)		+ '%22x22/apps/trayer.png%Trayer' SelectTrayerManager trayer
+Test (x stalonetray)	+ '%22x22/apps/stalonetray.png%StaloneTray' SelectTrayerManager stalonetray
+
+DestroyFunc SelectTrayerManager
+AddToFunc SelectTrayerManager
++ I FindCommand TrayerManager $0 trayer stalonetray
++ I SavePreferences TrayerManager "FindCommand TrayerManager $0 trayer stalonetray"
++ I Module FvwmForm TrayerManager-Dialog
+
+All (TrayerManager-Dialog) Close
+DestroyModuleConfig TrayerManager-Dialog: *
+*TrayerManager-Dialog: Title "$[gt.Changed trayer manager]"
+*TrayerManager-Dialog: Text "$[gt.Selected trayer manager will be used]"
+*TrayerManager-Dialog: Line center
+*TrayerManager-Dialog: Text "$[gt.at the next start of your X session]"
+*TrayerManager-Dialog: Line center
+*TrayerManager-Dialog: Line center
+*TrayerManager-Dialog: Button quit " $[gt.Logout] " ^M
+*TrayerManager-Dialog: Command Quit
+*TrayerManager-Dialog: Button quit " $[gt.Not now] " ^[
+*TrayerManager-Dialog: Command Nop
+*TrayerManager-Dialog: Line center
+
hunk ./fvwm/components/functions/Preferences-Menu 84
+Test (x alsaplayer)	+ '%22x22/apps/alsaplayer.png%Alsaplayer'	SelectMusicPlayer alsaplayer
hunk ./fvwm/components/functions/Preferences-Menu 96
-+ I FindCommand MusicPlayer $0 mpd quodlibet audacious xmms xmm2 cmus mocp
++ I FindCommand MusicPlayer $0 alsaplayer mpd quodlibet audacious xmms xmm2 cmus mocp
hunk ./fvwm/components/functions/Trayer-stalonetray 1
+# Support for stalonetray
+# Written by: Dominique Michel <[EMAIL PROTECTED]>
+
+# stalonetray syntax:
+# stalonetray --dbg-level 1
+# --background <color>
+# --geometry <widthxheigth+x+y>
+# --grow-gravity <one of N, S, W, E, NW, NE, SW, SE>
+# --icon-gravity <one of NW, NE, SW, SE>
+# --icon-size <n> (default 24)
+# --max-width <n> (default 0; no limit)
+# --max-heigth <n> (idem)
+# --parent-bg <bool> (default false)
+# --ignore-icon-resize <bool> (default false)
+# --respect-icon-hints <bool> (default false)
+# --skip-taskbar <bool> (default false)
+# --transparent <bool> (default false)
+# --vertical (default horizontal)
+
+# Settings of Trayer {{{1
+AddToFunc StartFunction I Exec exec killall stalonetray
+
+DestroyFunc TrayerPanel
+AddToFunc TrayerPanel
++ I DestroyModuleConfig FvwmStalonePanel: *
++ I *FvwmStalonePanel: Frame 0
++ I *FvwmStalonePanel: Font none
++ I *FvwmStalonePanel: ActiveColorset $[cs-panel-active]
++ I *FvwmStalonePanel: Colorset $[cs-panel-inactive]
++ I *FvwmStalonePanel: Columns 1
++ I *FvwmStalonePanel: Rows 1
++ I *FvwmStalonePanel: (1x1, Padding 0 0, Swallow (NoClose) "stalonetray" 'Exec stalonetray \
+--dbg-level 1 \
+--parent-bg \
+--icon-size $[trayer_ic_size] \
+-geometry $[trayer_width]x24$[trayer_x]$[trayer_y] \
+--icon-gravity $[trayer_ic_grav]')
++ I Module FvwmButtons -g $[trayer_width]x24$[trayer_x]$[trayer_y] FvwmStalonePanel
hunk ./fvwm/components/functions/Trayer-trayer 1
+# Support for trayer
+# Written by: Dominique Michel <[EMAIL PROTECTED]>
+
+# trayer syntax:
+# trayer --edge <left right top bottom none>
+# --align <left center right>
+# --margin <size>
+# --widthtype request pixel percent
+# --width <size>
+# --heighttype <request pixel percent>
+# --height <size>
+# --SetDockType <bool>
+# --transparent <bool>
+# --alpha <value> (0= non transparent, 256=full transparency)
+# --tint <color>
+# --distance <length>
+# --expand <bool>
+# --padding <size>
+
+# Settings of Trayer {{{1
+AddToFunc ExitFunction I Exec exec killall trayer
+
+DestroyFunc TrayerPanel
+AddToFunc TrayerPanel
++ I Exec exec trayer \
+--SetDockType false \
+--widthtype $[trayer_width_t] \
+--heighttype $[trayer_heigth_t] \
+--height 24 \
+--edge $[trayer_edge] \
+--align $[trayer_align] \
+--transparent true \
+--alpha $[TrayerAlpha] \
+--tint $[TrayerTint] \
+--margin $[trayer_marge] \
+--distance $[trayer_dist]
hunk ./fvwm/preferences/TrayerManager 1
+FindCommand TrayerManager trayer trayer stalonetray
hunk ./fvwm/recipes/Default 25
+Include components/functions/Trayer-$[TrayerManager]
+# Default Trayer width
+Include components/functions/Trayer
hunk ./fvwm/recipes/Default 338
-AddToFunc ExitFunction I Exec exec killall trayer
hunk ./fvwm/recipes/Default 339
-AddToFunc StartFunction I Exec exec trayer \
---SetDockType false \
---widthtype request \
---heighttype pixel \
---height 24 \
---edge top \
---align right \
---transparent true \
---alpha $[TrayerAlpha] \
---tint $[TrayerTint] \
---margin 217 \
---distance 3
+# Settings of stalonetray {{{2
+DestroyFunc Trayer-Stalone
+AddToFunc Trayer-Stalone
++ I SetEnv trayer_ic_size "24"
++ I SetEnv trayer_x "-217"
++ I SetEnv trayer_y "+3"
++ I SetEnv trayer_ic_grav "W"
++ I SetEnv trayer_vert ""
hunk ./fvwm/recipes/Default 348
+# Settings of trayer {{{2
+DestroyFunc Trayer-Trayer
+AddToFunc Trayer-Trayer
++ I SetEnv trayer_width_t "request"
++ I SetEnv trayer_heigth_t "pixel"
++ I SetEnv trayer_edge "top"
++ I SetEnv trayer_align "right"
++ I SetEnv trayer_marge "217"
++ I SetEnv trayer_dist "3"
+
+Test (EnvMatch TrayerManager stalonetray) Trayer-Stalone
+Test (EnvMatch TrayerManager trayer) Trayer-Trayer
+TrayerPanel
}

Context:

[Added documentation menu in "Developer Menu"
Maciej Delmanowski <[EMAIL PROTECTED]>**20070414223050
 Currently there are all FVWM man pages included, divided in various sections.
] 
[Removed redundant 'gdmflexiserver' entry from the Application database
Maciej Delmanowski <[EMAIL PROTECTED]>**20070414210945
 Support for gdmflexiserver is included in 'components/functions/Exit-gdm', and
 it's activated when GDM is detected.
] 
[Added the sample application-specific bindings for Ardour
Maciej Delmanowski <[EMAIL PROTECTED]>**20070414210638
 You can use this file to remove unwanted bindings from Ardour's windows, by
 including it in your configuration (~/.fvwm-crystal/userconfig).
] 
[Rearrangements in the Application database
Maciej Delmanowski <[EMAIL PROTECTED]>**20070414204838
 - Ekiga has been removed from 'Network/Instant_Messaging' section, it's
   available in 'Network/Telephony' section and has been included two times in
   the menu.
 - Balsa Address Book should be in the 'Office/Contact_Management' section,
   because it's responsible for managing address book in the Balsa mail client.
 - I've added 'deluge-torrent', the same as 'deluge' application.
] 
[Reverting back for old keybindings for QuakeConsole, new terminal window and FvwmMiniConsole
Maciej Delmanowski <[EMAIL PROTECTED]>**20070410233313] 
[New recipes with all the alsaplayer functions
Dominique Michel <[EMAIL PROTECTED]>**20070404221518] 
[New french UTF-8 locale
Dominique Michel <[EMAIL PROTECTED]>**20070404175313] 
[New decoration: CIOS-blue
Dominique Michel <[EMAIL PROTECTED]>**20070404174713] 
[New Misc-Keybindings
Dominique Michel <[EMAIL PROTECTED]>**20070404172051] 
[New utility apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404171204] 
[New system apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404171047] 
[New settings apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170852] 
[New office apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170710] 
[New network apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170538] 
[New video apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170333] 
[New audio-video apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170210] 
[New audio apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404170017] 
[New knowledge apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404165831] 
[New graphics apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404165715] 
[New devel apps for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404165554] 
[New games for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404165314] 
[New games for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404165057] 
[New games for the application menu
Dominique Michel <[EMAIL PROTECTED]>**20070404164738] 
[Added script to generate the menu entries from application type desktop files.
Dominique Michel <[EMAIL PROTECTED]>**20070404155135] 
[Added category icons for the freedesktop friendly menu
Dominique Michel <[EMAIL PROTECTED]>**20070404153659] 
[Fvwm-Crystal category icons reorganisation into a freedesktop friendly menu
Dominique Michel <[EMAIL PROTECTED]>**20070404152524] 
[Fvwm-Crystal menu reorganisation into a freedesktop friendly menu
Dominique Michel <[EMAIL PROTECTED]>**20070404133734] 
[Resolving small conflicts the fourth time
Maciej Delmanowski <[EMAIL PROTECTED]>**20070328175825] 
[Added es_ES.UTF-8 translation, thanks to [EMAIL PROTECTED]
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327223819] 
[All *.m3u and *.pls are now searched in ~/.fvwm-crystal/playlists directory
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327223620] 
[Add support for the Audacious music player, thanks to [EMAIL PROTECTED]
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327223443] 
[Added support for MOC music player, created by [EMAIL PROTECTED]
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327212553] 
[Adding new icons, applications and styles
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327211204
 Now Firefox, Thunderbird and Mozilla Suite don't use MiniIcons forced by FVWM-Crystal
] 
[Updated fvwm.vim hilight configuration
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327181907] 
[Some changes in support for 'xmms2' music player (experimental)
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327181758] 
[Added support for the 'amixer' audio mixer
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327181329] 
[Improved gmplayer window support - you can now raise/lower mplayer control window above/below video window
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327180833] 
[Added "Expose" clone, it's an experimental code, needs improvement
Maciej Delmanowski <[EMAIL PROTECTED]>**20070327180705] 
[Reverting changes to the 'components/functions/Window-Decorations', these functions are meant to count the directories, not just activate if they're present
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121223907] 
[Resolving some conflicts a third time
Maciej Delmanowski <[EMAIL PROTECTED]>**20070328175641] 
[Updated 'components/styles/Applications' (Thomas Adam's patch)
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121223317] 
[Again resolving some conflicts...
Maciej Delmanowski <[EMAIL PROTECTED]>**20070328175033] 
[Applied Thomas Adam's patch of the 'components/functions/Fullscreen' file, thanks Thomas!
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121222948] 
[Resolved conflicts with Thomas patches (something isn't right here...)
Maciej Delmanowski <[EMAIL PROTECTED]>**20070328174807] 
[Functions-Style-Updates
[EMAIL PROTECTED] 
[Removed startup of 'gnome-settings-daemon' from 'preferences/Startup'
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121214205] 
[Added 'components/apps/OpenOffice.org' to all of the recipes
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121214119] 
[Added new configuration files for 'gnome-settings-daemon' and 'OpenOffice.org':
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121213808
 - in 'components/apps/GNOME-Settings-Daemon' you can find a code which will
   launch g-s-d at startup; this code has been moved from 'preferences/Startup'
   to it's own file to make it easier to run g-s-d. It's not used by default,
   you can add it to your recipe or for example, '~/.fvwm-crystal/userconfig'.
 - in 'components/apps/OpenOffice.org' you can find settings for OpenOffice.org
   to allow it to use GNOME or KDE theme. By default OO.o uses GNOME themes,
   it's launched from the recipe.
] 
[Updated 'WindowSize' in the "FvwmScript-Clock-small"
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210949] 
[Updated application styles
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210910] 
[Added new applications
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210836] 
[Added new application icons
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210750] 
[Changed default FvwmIconMan resolution from "Global" to "Page" due to popular demand in 'Default' and 'Default with ACPI' recipes
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210628] 
[Updated 'SilentHacker' recipe:
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121210418
 - added main FVWM-Crystal menu and Applications menu under Alt+Win_R/Menu
 - added top panel with output from 'fvwm-crystal.infoline' script and clock
] 
[Added new script, 'fvwm-crystal.infoline'
Maciej Delmanowski <[EMAIL PROTECTED]>**20070121205727] 
[New recipe "SilentHacker" - very minimalistic
Maciej Delmanowski <[EMAIL PROTECTED]>**20061005204911] 
[New, really small clock script
Maciej Delmanowski <[EMAIL PROTECTED]>**20061005204848] 
[TAG 3.0.4
Maciej Delmanowski <[EMAIL PROTECTED]>**20060530203159] 
Patch bundle hash:
1cb08d13a61819c92a1344f3cca203c1bdb7cec4
_______________________________________________
fvwm-crystal-users mailing list
fvwm-crystal-users@gna.org
https://mail.gna.org/listinfo/fvwm-crystal-users

Reply via email to