sxalert

Simple notification system for X
git clone git://mcdim.xyz/sxalert.git
Log | Files | Refs | README | LICENSE

sxalert.1 (921B)


      1 .\" Manpage for sxalert
      2 
      3 .TH man 8 "11 Nov 2023" "0.1" "sxalert manual page"
      4 .SH NAME
      5 sxalert \- Simple X Alert
      6 .SH SYNOPSIS
      7 sxalert [OPTIONS] "First line" "Second line" "Third line"
      8 .SH DESCRIPTION
      9 sxalert will draw text as a notification for X
     10 
     11 .SH OPTIONS
     12 
     13 -t text color in hex
     14 
     15 -g background color in hex
     16 
     17 -r border color in hex
     18 
     19 -b border width in pixels
     20 
     21 -d duration in milliseconds
     22 
     23 -h print help panel & exit
     24 
     25 -v print version & exit
     26 
     27 .SH EXAMPLES
     28 
     29 This will print the string "Updates available":
     30 
     31 sxalert "Updates avalailable"
     32 
     33 The following will also print "Updates available" but will specify text color to be red, background to be black and border width to be 0:
     34 
     35 sxlaert -t 0xff0000 -g 0x000000 -b 0 "Updates available"
     36 
     37 These will overwrite the defaults specified in config.h
     38 
     39 .SH AUTHOR
     40 Michael Constantine Dimopoulos <mk@mcdim.xyz>
     41 
     42 https://mcdim.xyz
     43 
     44 .SH LICENSE
     45 GNU General Public License 3.0 (GPL-3.0)