Browse Source

update manpages; rearrange args

if someone wants to help reorganize the manpages I'll love you forever
master
Pandora 7 years ago
parent
commit
8bf03bab9d
  1. 45
      i3lock.1
  2. 4
      i3lock.c

45
i3lock.1

@ -197,8 +197,16 @@ Sets the color of the ring 'highlight' strokes that appear upon backspace.
Sets the color of the 'separtor', which is at both ends of the ring highlights. Sets the color of the 'separtor', which is at both ends of the ring highlights.
.TP .TP
.B \-\-textcolor=rrggbbaa .B \-\-verifcolor=rrggbbaa
Sets the color of the status text ("verifying...", "wrong!", etc). Sets the color of the status text while verifying.
.TP
.B \-\-wrongcolor=rrggbbaa
Sets the color of the status text when "wrong".
.TP
.B \-\-layoutcolor=rrggbbaa
Sets the color of the keyboard layout text.
.TP .TP
.B \-\-indpos="x position:y position" .B \-\-indpos="x position:y position"
@ -227,14 +235,6 @@ Sets the color of the time in the clock.
.B \-\-timestr="%H:%M:%S" .B \-\-timestr="%H:%M:%S"
Sets the format used for generating the time string. See strftime(3) for a full list of format specifiers. Sets the format used for generating the time string. See strftime(3) for a full list of format specifiers.
.TP
.B \-\-timefont=sans-serif
Sets the font used to render the time string.
.TP
.B \-\-timesize=number
Sets the font size for rendering the time string. Defaults to 32.
.TP .TP
.B \-\-timepos="x position:y position" .B \-\-timepos="x position:y position"
Sets the position for the time string. All the variables from \-\-indpos may be used, in addition to: Sets the position for the time string. All the variables from \-\-indpos may be used, in addition to:
@ -253,8 +253,8 @@ ch - the clock height.
.RE .RE
.TP .TP
.B \-\-time\-align, \-\-date\-align, \-\-layout\-align .B \-\-time\-align, \-\-date\-align, \-\-layout\-align, \-\-verif\-align, \-\-wrong\-align, \-\-modif\-align
Sets the text alignment of the time, date, and keyboard layout. Values are: Sets the text alignment of the time, date, keylayout, verification text, wrong text, and modifier text.
.RS .RS
.RS .RS
@ -274,13 +274,14 @@ Sets the color of the date in the clock.
.TP .TP
.B \-\-datestr="%A, %m %Y" .B \-\-datestr="%A, %m %Y"
Sets the format used for generating the date string. See strftime(3) for a full list of format specifiers. Sets the format used for generating the date string. See strftime(3) for a full list of format specifiers.
.TP .TP
.B \-\-datefont=sans-serif .B \-\-{time, date, layout, verif, wrong}\-font=sans-serif
Sets the font used to render the date string. Sets the font used to render various strings.
.TP .TP
.B \-\-datesize=number .B \-\-{time, date, layout, verif, wrong}size=number
Sets the font size for rendering the date string. Defaults to 14. Sets the font size used to render various strings.
.TP .TP
.B \-\-datepos="x position:y position" .B \-\-datepos="x position:y position"
@ -307,18 +308,14 @@ Sets the string to be shown while verifying the password/input/key/etc. Defaults
.B \-\-wrongtext="text" .B \-\-wrongtext="text"
Sets the string to be shown upon entering an incorrect password. Defaults to "wrong!". Sets the string to be shown upon entering an incorrect password. Defaults to "wrong!".
.TP
.B \-\-textsize=number
The fontsize of the status text. Defaults to 28.
.TP
.B \-\-modsize=number
The fontsize of the text listing all the active modifiers (caps lock, num lock, etc). Defaults to 14.
.TP .TP
.B \-\-radius .B \-\-radius
The radius of the circle. Defaults to 90. The radius of the circle. Defaults to 90.
.TP
.B \-\-ring\-width
The width of the ring unlock indicator. Defaults to 7.0.
.TP .TP
.B \-\-bar\-indicator .B \-\-bar\-indicator
Replaces the usual ring indicator with a bar indicator, with a variety of options. Replaces the usual ring indicator with a bar indicator, with a variety of options.

4
i3lock.c

@ -1085,6 +1085,8 @@ int main(int argc, char *argv[]) {
{"verif-font", required_argument, NULL, 0}, {"verif-font", required_argument, NULL, 0},
{"wrong-font", required_argument, NULL, 0}, {"wrong-font", required_argument, NULL, 0},
{"layout-font", required_argument, NULL, 0}, {"layout-font", required_argument, NULL, 0},
{"verifsize", required_argument, NULL, 0},
{"wrongsize", required_argument, NULL, 0},
{"timesize", required_argument, NULL, 0}, {"timesize", required_argument, NULL, 0},
{"datesize", required_argument, NULL, 0}, {"datesize", required_argument, NULL, 0},
{"layoutsize", required_argument, NULL, 0}, {"layoutsize", required_argument, NULL, 0},
@ -1097,8 +1099,6 @@ int main(int argc, char *argv[]) {
{"veriftext", required_argument, NULL, 0}, {"veriftext", required_argument, NULL, 0},
{"wrongtext", required_argument, NULL, 0}, {"wrongtext", required_argument, NULL, 0},
{"verifsize", required_argument, NULL, 0},
{"wrongsize", required_argument, NULL, 0},
{"modsize", required_argument, NULL, 0}, {"modsize", required_argument, NULL, 0},
{"radius", required_argument, NULL, 0}, {"radius", required_argument, NULL, 0},
{"ring-width", required_argument, NULL, 0}, {"ring-width", required_argument, NULL, 0},

Loading…
Cancel
Save