C Library Functions  - xterm_position (3)

NAME

xterm_position(3f) - [M_xterm] set xterm(1) window position using escape sequences (LICENSE:MIT)

CONTENTS

Synopsis
Description
Options
Example
Author
License

SYNOPSIS

subroutine xterm_position(right,down) integer,intent(in),optional :: right integer,intent(in),optional :: down

DESCRIPTION

Sets the position of an xterm(1) window by specifying the position of the upper left corner.

OPTIONS

right how far in pixels to place upper left corner of window from left edge of display
down how far down in pixels to place upper left corner of window from upper edge of display

EXAMPLE

A sample program:

   program demo_xterm_position
   use M_xterm, only : xterm_position
   implicit none
   integer :: right, down
   call xterm_position(down=200,right=100)
   end program demo_xterm_position

AUTHOR

John S. Urban

LICENSE

    MIT


Nemo Release 3.1 xterm_position (3) July 22, 2023
Generated by manServer 1.08 from 68ebad0d-5c46-4455-aa0f-628c9ad83e8a using man macros.