Sponsored Content
Full Discussion: Window Manager
Operating Systems Linux Fedora Window Manager Post 302554785 by messi777 on Tuesday 13th of September 2011 04:42:02 AM
Old 09-13-2011
thanks, and would you help me to differentiate between CDE and window manager? is there any difference really?

is WM installable on redhat/fedora?
cheers.
 

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Java Desktop Icon - which window manager?

I have a Java app that is deployed on several Unix systems. Until recently, starting it from the command line was no problem. A recent requirement is to deliver a desktop icon that will launch the app. I have launched apps with icons before, but that was when I knew exactly which window... (1 Reply)
Discussion started by: herbmiller
1 Replies

2. UNIX Desktop Questions & Answers

Window Manager of the ... Choice

Inspired by Window Manager of the Year threads from LinuxQuestions.org Like these: 2002 | 2003 | 2004 | 2005 | 2006 I wonder what WMs are used by UNIX people ... People sometimes select diffrent WMs for (old and slow) laptop and (overpowered) workstation, that is why poll allows multiple... (8 Replies)
Discussion started by: vermaden
8 Replies

3. Programming

How to override Window Manager placement of windows.

Hello, everyone! Is it possible to create a window in X11/WM, but override the position Window Manager sets for the window. I'm not sure how to use 'override_redirect' flag, and what to do in order to use it. But the problem with the flag is also that it probably will disable all decorations... (2 Replies)
Discussion started by: AOne
2 Replies

4. Shell Programming and Scripting

Determining window manager from command line

How to know what is my window manager from Linux command line? ---------- Post updated at 02:46 PM ---------- Previous update was at 12:07 PM ---------- How to determine the display manager from command line? (1 Reply)
Discussion started by: proactiveaditya
1 Replies

5. UNIX Desktop Questions & Answers

Slimmest Window Manager

Hi Which is the absolutely slimmest window manager Window Manager? THX (3 Replies)
Discussion started by: ccc
3 Replies

6. Red Hat

Window manager on Fedora

Hi eveybody, I want to install fedora on my personal laptop, but I dont want to use any graphical desktop environment, this way i will force myself to learn more. I want to install wm2 which i used to work with it on debian a couple of yeras ago, so is there any instruction that how I can do this?... (3 Replies)
Discussion started by: messi777
3 Replies
Mwm(3)							User Contributed Perl Documentation						    Mwm(3)

NAME
Tk::Mwm - Communicate with the Motif(tm) window manager. SYNOPSIS
use Tk::Mwm; $toplevel->mwmOption?(args)? $toplevel->mwm(option ?,args?) DESCRIPTION
Interface to special extentions supported by mwm. METHODS
$toplevel->mwmDecoration?(?option??=>value? ?,...?)? When no options are given, this method returns the values of all the decorations options for the toplevel window with the $toplevel. When only one option is given without specifying the value, the current value of that option is returned. When more than one "option- value" pairs are passed to this method, the specified values will be assigned to the corresponding options. As a result, the appearance of the Motif decorations around the toplevel window will be changed. Possible options are: -border, -menu, -maximize, -minimize, -resizeh and -title. The value must be a Boolean value. The values returned by this command are undefined when the window is not managed by mwm. $toplevel->mwmIsmwmrunning This returns value is true if mwm is running on the screen where the specified window is located, false otherwise. $toplevel->mwmProtocol When no additional options are given, this method returns all protocols associated with this toplevel window. $toplevel->mwmProtocol(activate => protocol_name) Activate the mwm protocol message in mwm's menu. $toplevel->MwmProtocol(add => protocol_name, menu_message) Add a new mwm protocol message for this toplevel window. The message is identified by the string name specified in protocol_name. A menu item will be added into mwm's menu as specified by menu_message. Once a new mwm protocol message is added to a toplevel, it can be caught by the TK protocol method. Here is an example: $toplevel->mwmProtocol('add' => 'MY_PRINT_HELLO', '"Print Hello" _H Ctrl<Key>H'); $toplevel->protocol('MY_PRINT_HELLO' => sub {print "Hello"}); $toplevel->mwmProtocol('deactivate' => protocol_name) Deactivate the mwm protocol message in mwm's menu. $toplevel->mwmProtocol('delete' => protocol_name) Delete the mwm protocol message from mwm's menu. Please note that the window manager protocol handler associated with this protocol (by the protocol method) is not deleted automatically. You have to delete the protocol handle explicitly. E.g.: $mw->mwmProtocol('delete' => 'MY_PRINT_HELLO'); $mw->protocol('MY_PRINT_HELLO' => ''); BUGS
This is a Tix extension which perl/Tk has adopted. It has not been tested as perl/Tk's author has not got round to installing a Motif Window Manager. On some versions of mwm, the -border will not disappear unless -resizeh is turned off. Also, the -title will not disappear unless all of -title, -menu, -maximize and -minimize are turned off. SEE ALSO
Tk::Wm Tk::tixWm Tk::Toplevel KEYWORDS
window manager, mwm, TIX AUTHOR
Ioi Kim Lam - ioi@graphics.cis.upenn.edu perl v5.16.3 2014-06-10 Mwm(3)
All times are GMT -4. The time now is 04:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy