screen

How can I search patterns in Screen with a Perl regex?

I have a process which gives me continuously output in Screen. I want to search CamelCase words by the following Perl's regex in the output such that I can monitor actively the outputs. /\b([a-z]*[A-Z][a-z]*){2,}\b/ ...

OpenGL Screen Transitions Effects?

Hello! Anyone familiar with resources or sample source code that demonstrates screen/page transition effects using plain OpenGL? (Preferably C/C++ and not using QT). Thanks. ...

Jquery Change Height based on Browser Size/Resize

Hi all, I was wondering if there was a way to determine the height/width of a browser. What i'm trying to do is set a height on a div to 500px when the browser size is 1024x768, and for anything lower i'd like to set it to 400px. Thanks in advance ...

Unable to use Splits effectively in Screen

I searched unsuccessfully Screen's info manual in Emacs by C-s. I was not able to search all nodes at once. I can create a split by C-a S in Screen, move between them by C-a TAB and close them by C-a X However, I cannot launch anything on them. I have now two same windows in two splits. I want to start a new session in othe...

Unable to use X clipboard in Screen

I read the following code in Unix Power Tools on page 117 *VT100.Translations: #override\ Button1 <Btn3Down>: select-end(primary,CUT_BUFFER0,CLIPBOARD)\n\ !Shift <Btn2Up>: insert-selection(CLIPBOARD)\n\ ~Shift ~Ctrl ~Meta <Btn2Up>: insert-selection(primary,CUT_BUFFER0) I have not managed to see any effect of the above ...

Unable to use Screen's clipboard inside Firefox

I have not managed to get my pbcopy/pbpaste to work in Screen as discussed here. I aim to solve the problem by having Screen clipboard inside Firefox. Its paste works in terminal by the following command but not in Firefox C-a ] How can you use Screen's clipboard inside Firefox? ...

Unable to source in .screenrc

I have the following in my .screenrc source ~/bin/Screen/multiUserSettings It gives me No such file or directory although I have it. The following code says me that unknown command ".". . ~/bin/Screen/multiUserSettings It is strange, since I can source by . in .vimrc and .zshrc, for instance. The file multiUserSettings # a...

Unable to search effectively in Screen

I know that you should be able to search in Screen by C-a / or C-a ? or C-a s or C-a r However, none of the commands work for me. I have the following .screenrc. My .screenrc markkeys h=d:j=h:k=t:l=n # to change the escape key from ^Aa to # NB ^n to move btw Screens escape ^Tt # I want to use Vim's navigation keys bind...

Xrandr errors. BadName (named color or font does not exist)

Hi, I've been looking and googling a lot, but I didn't find a solution to this problem. I was successfully using xrandr to extend my desktop in my work place with this little "script". #!/bin/sh xrandr --newmode 1920x1080 220.64 1920 2056 2264 2608 1080 1081 1084 1128 -HSync +Vsync xrandr --addmode VGA 1920x1080 xrandr --output VG...

how to write a program to generate the current brower's content but "ALL OF THE CONTENT" plus the Window's menu bar and frame/border (including the content even when scrolled down)

I remember in the early days of the web, there were books including the whole browser window's title bar, menu bar, and even the border of the browser, and the content inside of it -- not just the current content in the window, but all the content even when scrolled down). I'd like to be able to do that too... is there a easy way to wr...

any quick and easy way to capture a part of the screen? getPixel was slow and GetDIBits seemed a bit complcated as a start

I was trying some code to capture part of the screen using getPixel on Windows, with the device context being null (to capture screen instead of window), but it was really slow. It seems that GetDIBits() can be fast, but it seems a bit complcated... I wonder if there is a library that can put the whole region into an array, and pixel[x]...

Could you please give me the function of taking print screen and convert in to jpg in javascript or flash.

Could you please give me the function of taking print screen and convert in to jpg in javascript or flash ...

Android : Disable 1.5 cupcake animation transitions.

Long story short, how can I disable the screen transitions between activities? We implemented our own tab handler if you will, and now it is doing a transition between tabs, which looks pretty tacky. Thanks! Chris. ...

Programatically detect and setup an external screen?

Hi. Is it possible in Java (or any other language?) to detect if there's an available external screen (on VGA or DVI) and start the screen, and send graphics (text and stuff) to it. An example: In Powerpoint, if you have an external screen connected, and you go "live" or start the presentation, it will show on the external screen. I'm ...

Unable to start Google in Firefox from terminal to search Screen's clipboard

Problem: to have a keyboard shortcut to google a current selection in Screen's copy mode from terminal to Firefox You can copy the sentence to Screen's clipboard in copy-mode by pressing enter. However, I want to be able to press g to put the Screen's clipboard to the command below as the first parameter: #!/bin/sh q=$1 open "http://ww...

tuning recording video quality

Hello everyone, I am using the following code to record screen, but the recorded video quality is not very good. Any ideas how to improve it? My environment: Windows Vista + Windows Media Encoder + VSTS 2008 + C#. Here is the original desktop screen snapshot, http://i40.tinypic.com/zmxm6b.jpg Here is the recorded desktop screen snap...

Executing *nix binaries in Python

I need to run the following command: screen -dmS RealmD top Essentially invoking GNU screen in the background with the session title 'RealmD' with the top command being run inside screen. The command MUST be invoked this way so there can't be a substitute for screen at this time until the server is re-tooled. (Another project for anot...

How to target the Blackberry browser?

Hi, I am using the following to target iphones, and handheld devices to use specific mobile styles sheets but the Blackberry browers is picking up only the regular screen style sheets. <link media="handheld, only screen and (max-device-width: 320px)" href="mobile.css" type="text/css" rel="stylesheet" /> <link media="only screen and (ma...

c# screen capture virtual desktop

Hi all, I've found a way to create virtual desktops with c#. Now I was wondering if we can take a screenshot of a particular desktop and if so how ? Thanks in advance Blizz ...

Dynamic info screen

I am trying to find a way to make the info screen on my app download from the web IF an internetconnection is available (so i can update it regularly). If internet is not available, it should use the default or the last downloaded one. Is this possible? ...