diff options
author | dakkar <dakkar@thenautilus.net> | 2023-12-11 19:48:36 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2025-03-24 17:16:28 +0000 |
commit | 47b815a92c87db35648cae92b9ef4993edcaae3c (patch) | |
tree | 0b4acf8d0a608b1f0de1e349448d5f24efb6f9e5 /components/functions | |
parent | better colours (diff) | |
download | fvwm-crystal-master.tar.gz fvwm-crystal-master.tar.bz2 fvwm-crystal-master.zip |
Diffstat (limited to 'components/functions')
-rw-r--r-- | components/functions/NotificationAreaManager-trayer-srg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/components/functions/NotificationAreaManager-trayer-srg b/components/functions/NotificationAreaManager-trayer-srg new file mode 100644 index 0000000..795ce41 --- /dev/null +++ b/components/functions/NotificationAreaManager-trayer-srg @@ -0,0 +1,32 @@ +# Support for trayer-srg +# Written by: Dominique Michel <dominique_libre@users.sourceforge.net> +# for FVWM-Crystal, 2013 +# +# Version with parameters instead of the environment + +# Trayer Syntax: +# NotificationAera [widthtype <request|pixel|percent>] [heighttype <request|pixel|percent>] \ +# [height <size>] [edge <left|right|top|bottom|none>] [align <left|right|center>] \ +# [margin <n pixels>] [distance <n pixels>] [width <size>] + +AddToFunc ExitFunction I Exec exec killall trayer + +# Settings of Trayer {{{1 +DestroyFunc FvwmTrayerPanel +AddToFunc FvwmTrayerPanel ++ I Exec exec trayer-srg \ +--SetDockType false \ +--widthtype $[0] \ +--heighttype $[1] \ +--height $[2] \ +--edge $[3] \ +--align $[4] \ +--transparent true \ +--alpha $[TrayerAlpha] \ +--tint $[TrayerTint] \ +--margin $[5] \ +--distance $[6] \ +$[7] $[infostore.SILENT] ++ I Style trayer-srg !Title, !Icon + +# vim:ft=fvwm |