HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

xcursorgen — Create an X cursor file from a collection of PNGs. If `--prefix` is omitted, the image files must be

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createcommandfromcollectioncursorclifilexcursorgen
linux

Problem

How to use the xcursorgen command: Create an X cursor file from a collection of PNGs. If --prefix is omitted, the image files must be located in the current working directory. More information: <https://manned.org/xcursorgen>.

Solution

xcursorgen — Create an X cursor file from a collection of PNGs. If --prefix is omitted, the image files must be located in the current working directory. More information: <https://manned.org/xcursorgen>.

Create an X cursor file using a configuration file:
xcursorgen {{path/to/config.cursor}} {{path/to/output_file}}


Create an X cursor file using a configuration file and specify the path to the image files:
xcursorgen --prefix {{path/to/image_directory}}/ {{path/to/config.cursor}} {{path/to/output_file}}


Create an X cursor file using a configuration file and write the output to stdout:
xcursorgen {{path/to/config.cursor}}

Code Snippets

Create an X cursor file using a configuration file

xcursorgen {{path/to/config.cursor}} {{path/to/output_file}}

Create an X cursor file using a configuration file and specify the path to the image files

xcursorgen --prefix {{path/to/image_directory}}/ {{path/to/config.cursor}} {{path/to/output_file}}

Create an X cursor file using a configuration file and write the output to `stdout`

xcursorgen {{path/to/config.cursor}}

Context

tldr-pages: linux/xcursorgen

Revisions (0)

No revisions yet.