Tagged Questions
0
votes
1answer
31 views
Universal vim-like keyboard shortcut for all program
how can I write a program to implement vim feature in all other programs like this:
capture keystroke before all other program
decide whether it's in normal, insert or visual mode according to ...
2
votes
2answers
2k views
Cannot open display on RHEL
I am trying to ssh to a server (myserver) installed with RHEL 5.8 from a desktop client (mydesktop) with RHEL 6.2. I have group installed the "X Window" on the remote server, the DISPLAY variable on ...
3
votes
1answer
92 views
How can I count number of Window with specific title on Linux by Python?
Here is my solution, but I think it's not a good one. Can anybody suggest me new solution, I want to enumarize windows, and get the Title property to compare by just using core library of python , not ...
2
votes
1answer
205 views
Mechanism of clipboard of xwindow
Can anybody explain the mechanism of clipboard of xwindow to me?
For example, if I make a operation of open a file from gedit and copy the content of this file using ctrl+c. And then I open vim and ...
1
vote
1answer
321 views
How do I create a X-windows window independent of the current window manager?
I am playing with X-windows, Xlib, etc. I want to create a X-window independent of the window-manager: meaning that I do not want the WM to put a frame, minimize-maximize, close, menu, title-bar, etc. ...
1
vote
2answers
567 views
Video decoding and rendering library for XLib
Currently what I have a Linux application that was written using Xlib and I needed to add video playing capabilities into it.
What libraries would you recommend that I could use for video decoding ...
4
votes
4answers
189 views
On Linux, could a process render another process's GUI?
I am writing a video player on Linux and I would like to separate it into 2 process :
A. decoder process
B. GUI
In this way, I could use different programming languages and when a problem happens, ...