File: NotificationAreaManager-trayer

package info (click to toggle)
fvwm-crystal 3.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 19,748 kB
  • ctags: 793
  • sloc: sh: 2,815; cs: 880; python: 875; makefile: 212
file content (32 lines) | stat: -rw-r--r-- 864 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Support for trayer
# 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 \
--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 !Title, !Icon

# vim:ft=fvwm