File: SimpleOrColumned

package info (click to toggle)
signify 1.14-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 208 kB
  • sloc: perl: 892; makefile: 36
file content (161 lines) | stat: -rw-r--r-- 3,181 bytes parent folder | download | duplicates (5)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
###############################################################################
#
#  Cool signatures for Signify  (will choose either 'simple' or 'columned')
#
###############################################################################


% $name=My Name
% $email=myid@mycompany.com


###############################################################################
#
# Here starts the simple version
#
% { left


#
# Sign my name.  I want these centered, so they must be in a section.
# Note that the two "blank" lines actually have a single space.  Empty
# lines are ignored by Signify.
#
% { center=50
 
$name
$email
 
% }


#
# Put a separator line between name and quote
#
-------------------------------------------------------------------------------


#
# Here is my collection of quotes...
#
% { center
If it doesn't work, force it.  If it breaks, it needed replacing anyway.
% | center
Friends are relatives you make for yourself.
% | center, weight=2
The squeaky wheel doesn't always get the grease.  Sometimes it gets replaced.


#
# And, to help out the developers of Signify, a little plug for them...
# (A little free advertising for them gives them additional reason to
# generate more free software for me!)
#
% | center,weight=0.5
Generated by $PROGRAM.  For this and more, visit $WEBSITE


#
# And thus ends my quotes definition and columns definition
#
% }


#
# Here ends the simple version.
#
###############################################################################


###############################################################################
#
# Here starts the columned version
#
% |

#
# Put a separator line at the top
#
,-----------------------------------------------------------------------------.


#
# I want columns in my signature!  (first col is left, minimum size & repeats)
#
% ( left,minwidth,repeat
> 

#
# Put my name and userid in the second column  (centered horz & vert)
#
% | center,vcenter
$LOGNAME
$email


#
# Third column is a simple seperator (left, minimum size, & repeats)
#
% | left,minwidth,repeat
 | 


#
# Fourth column has a choice of cool quotes (center horz & vert)
#
% | center,vcenter


#
# Here is my collection of quotes...
#
% {
If it doesn't work, force it.
If it breaks, it needed replacing anyway.
% |
Friends are relatives you make for yourself.
% | weight=2
The squeaky wheel doesn't always get the grease.
Sometimes it gets replaced.
% |
If you're passed on the right...
you're in the wrong lane.


#
# And, to help out the developers of Signify, a little plug for them...
# (A little free advertising for them gives them additional reason to
# generate more free software for me!)
#
% | weight=0.1
This signature was automatically generated with
$PROGRAM.  For this and other cool products,
check out $WEBSITE


#
# And thus ends my quotes definition
#
% }


#
# The last column just finishes up the right-hand side
#
% | right,minwidth,repeat
<
% )


#
# Put a separator line at the bottom
#
`-----------------------------------------------------------------------------'



#
# Here ends the columned version.
#
###############################################################################
% }