Sponsored Content
Special Forums News, Links, Events and Announcements Software Releases - RSS News OSD Monitors 0.1 (Default branch) Post 302260862 by Linux Bot on Saturday 22nd of November 2008 01:20:07 AM
Old 11-22-2008
OSD Monitors 0.1 (Default branch)

Image OSD Monitors is a tool for those who prefer simple window managers and don't want precious screen space cluttered with panels, icons, etc. It uses the xosd library to display various textual monitors (clock, CPU usage, net, swap, disk, etc.) transparently at a fixed position on the screen. It has a very low memory and CPU footprint. Image

Image

More...
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Monitors in Linux

Dear Experts How can I change the monitor specifications, specially type, Frequency and resolution in linux Redhat 9 or more??? after the linux installation. Please advise Thanks (3 Replies)
Discussion started by: Reza Nazarian
3 Replies

2. BSD

Two monitors

Hello!:) There is the following situation: I've got video Ti 4200 on FreeBSD 5.1 and two monitors connected to it, how can I make available the second monitor in CLI and GUI. Thanks! (0 Replies)
Discussion started by: kamazi
0 Replies

3. UNIX Desktop Questions & Answers

Dual monitors on Ultra80

:confused:How do I configure Solaris 11 to use both my elite 3d cards and monitors to create one big screen? My machine is an Ultra80:confused: (2 Replies)
Discussion started by: vatch23
2 Replies

4. AIX

CDE and dual monitors

I am trying to get AIX CDE to run with dual monitors. I just upgraded to my desktop to use dual monitors. When I log in to my AIX system with exceed running and issue the Xsession command the Splash screen flash on 1 screen then disappears but the desktop never shows. How do I set up Xsession to... (1 Reply)
Discussion started by: daveisme
1 Replies
XOSD(3) 						     Library Functions Manual							   XOSD(3)

NAME
xosd - X on-screen display library SYNOPSIS
#include <xosd.h> xosd* xosd_create(int number_lines); int xosd_uninit (xosd* osd); int xosd_display (xosd* osd, int line, xosd_command command, ...); int xosd_is_onscreen(xosd* osd); int xosd_wait_until_no_display(xosd* osd); int xosd_hide (xosd* osd); int xosd_show (xosd* osd); int xosd_set_pos (xosd* osd, xosd_pos pos); int xosd_set_vertical_offset (xosd* osd, int offset); int xosd_set_horizontal_offset (xosd* osd, int offset); int xosd_set_align (xosd* osd, xosd_align align) int xosd_set_shadow_offset (xosd* osd, int shadow_offset); int xosd_set_timeout (xosd* osd, int timeout); int xosd_set_font (xosd* osd, char* font); int xosd_set_colour (xosd* osd, char* colour); int xosd_get_colour (xosd* osd, int* red, int* green, int* blue); int xosd_scroll (xosd* osd, int lines); int xosd_get_number_lines ( xosd* osd); DESCRIPTION
xosd is a library for displaying an on-screen display (like the one on many TVs) on your X display. Each function should have it's own man- page. The latest version can be found on http://www.ignavus.net/software.html It is distributed under the GNU General Public License. BUGS
No known bugs at the moment. There are probably functions that aren't listed here. Bug reports can be sent to tnw13@cosc.canterbury.ac.nz EXAMPLE
#include <xosd.h> int main (int argc, char *argv[]) { xosd *osd; osd = xosd_create (1); xosd_set_font(osd, "fixed"); xosd_set_colour(osd, "LawnGreen"); xosd_set_timeout(osd, 3); xosd_set_shadow_offset(osd, 1); xosd_display (osd, 0, XOSD_string, "Example XOSD output"); xosd_wait_until_no_display(osd); xosd_uninit (osd); return EXIT_SUCCESS; } AUTHOR
Martijn van de Streek <martijn@foodfight.org>, Some patching by Malcolm Valentine <farkit@iprimus.com.au> and Tim Wright <tim@ignavus.net>. xosd was written by Andre Renaud <andre@ignavus.net> and is maintained by Tim Wright <tim@ignavus.net>. SEE ALSO
More information on the X OSD Library and its author can be found on http://www.ignavus.net/software.html. Each function has its own man- page. See there for more information. X OSD Library December 2000 XOSD(3)
All times are GMT -4. The time now is 02:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy