LinuxCommandLibrary

sm

sm

TLDR

Display a message in full-screen

$ sm "[Hello World!]"
copy


Display a message with inverted colors
$ sm -i "[Hello World!]"
copy


Display a message with a custom foreground color
$ sm -f [blue] "[Hello World!]"
copy


Display a message with a custom background color
$ sm -b [#008888] "[Hello World!]"
copy


Display a message rotated 3 times (in steps of 90 degrees, counterclockwise)
$ sm -r [3] "[Hello World!]"
copy


Display a message using the output from another command
$ [echo "Hello World!"] | sm -
copy

Copied to clipboard