storename

Trivial utility for setting the root window's name in X11
git clone git://jacobedwards.org/storename
Log | Files | Refs

storename.1 (467B)


      1 .\" Copyright 2021 Jacob R. Edwards
      2 .Dd July 22, 2021
      3 .Dt STORENAME 1
      4 .Os
      5 .Sh NAME
      6 .Nm storename
      7 .Nd Store input as root X window name
      8 .Sh SYNOPSIS
      9 .Nm
     10 .Sh DESCRIPTION
     11 The
     12 .Nm
     13 utility sets the root X window name to each line of input as it
     14 reads it.
     15 .Sh EXIT STATUS
     16 .Ex -std
     17 .Sh EXAMPLES
     18 Store the current date and time as the root window name:
     19 .Pp
     20 .Dl $ while sleep 1; do date; done | storename
     21 .Sh SEE ALSO
     22 .Xr dwm 1 ,
     23 .Xr status 1
     24 .Sh AUTHORS
     25 .An Jacob R. Edwards