I want one pixel of vncviewer window border showing

i prefer to use a native package rather than roll my own, it just seems more sensible for keeping up.
trying gvncviewer, no idea what it's problem is:
$ gvncviewer --gtk-vnc-debug :34
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Init VncConnection=0x94c7528
(gvncviewer:18652): gtk-vnc-DEBUG: vncdisplaykeymap.c Using evdev keycode mapping
(gvncviewer:18652): gtk-vnc-DEBUG: vncdisplay.c Grab sequence is now Control_L+Alt_L
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Open host= port=5934
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Open coroutine starting
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Started background coroutine
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Resolving host 5934
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Doing final VNC cleanup
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Close VncConnection=0x94c7528
(gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Emit main context 15
(gvncviewer:18652): gtk-vnc-DEBUG: vncdisplay.c Disconnected from VNC server
Failed to connect to server
trying tigervnc, depending on what i specify for geometry, tiger vncviewer either ignores it, or starts in fullscreen.
(ubuntu xvnc4viewer allowed me to specify the exact location on the screen via -geometry so i didn't need to move it after launching it.)
the location i prefer leaves one pixel for the lefthand border, on which i click to (tell twm to) minimize the window,
and the entire remainder of the screen is the vnc session.
perhaps i could make a script to relocate the window after it arrives, tho i'm not yet familiar with an approach for doing that.
trying remmina, there doesn't seem to be any way to control it from commandline.  i found how to make a .remmina connection file somewhere on the web, but it doesn't seem to work with the arch package.
before i grind my nose off on this, does anyone have any suggestions?

Hi,
Check with the mainwindow size,  Try to increase the window size.
Here is sample code:
/: Position Xorigin '20' cm Yorigin '20' cm.
/: SIZE WIDTH  '20' TW HEIGHT  '20' TW
/: BOX FRAME 10 TW
Hope this helps you.
Regards,
Rajani

Similar Messages

  • I want to move syncing my iphone from one computer to another. (windows based) Is there a one stop way to do this?

    I want to move syncing my iphone from one computer to another. (windows based) Is there a one stop way to do this?
    Thanks

    Copy everything from one computer to the other then sync.

  • 4x4 window around one pixel? how?

    5. The processing procedure works as follows. For each pixel of an image, the procedure considers an (n x n) window centered on that pixel, computes the mean/median of gray-level values in the window, and the mean/median becomes the new gray-level value of the new image. The median is defined as the middle value in a sorted sequence. For example, consider the following (3 x 3) window of pixels: 11 90 74 71 14 92 20 87 68. The sorted sequence of these pixels is <11, 14, 20, 68, 71, 74, 87, 90, 92>, and the middle of the sequence is 71, which is the median of the window. The median of the sequence <1,4,7,9> is (4+7)/2=5. The result of replacing all pixels with average values is a smoothed image. Using median values producing the oil painting effect. On the negative side, the new image is blurrier than the original. Corners and edges of the image need to be handled differently. For this project, for the boundary cases, the sliding window will be resized and include only the image pixels within the window.
    how would i makea 4x4 window around one pixel?

    Maybe you should go away and learn Java and then come back when you can understand the answer.

  • How do i stop the icloud window from poping up everytime i start iTunes ? i do not have an icloud account and don't want one., how do i stop the icloud window from poping up everytime i start iTunes ? i do not have an icloud account and don't want one.

    how do i stop the icloud window from poping up everytime i start iTunes ? i do not have an icloud account and don't want one., how do i stop the icloud window from poping up everytime i start iTunes ? i do not have an icloud account and don't want one.

    If you don't have an icloud account, then icloud is not the thing that's popping up a window.
    If you are being asked to enter a password when accessing itunes, then the problem may be that you have purchased items (apps, songs, etc) on the device that were purchased using a different itunes account than the one you currently have defined on your device. 
    Purchased items are forever associated with the itunes account (the apple ID) that was used to make the purchase.  If you change the ID on the device, you won't be able to update any of them.  You'll have to purchase them again.

  • Lasr week I downloaded the latest OS update for my iPhone 5S. Now, a popup window states the password is invalid for voicemail. I have never need a password or I don't need one or want one. Have searched is setup to find a way to turnoff. Help!

    Last week I downloaded the latest OS update for my iPhone 5S. Now, a popup window states the password is invalid for voicemail. I have never needed a password or I don't need one or want one. Have searched is setup to find a way to turnoff the required password. Phone has been like this since the update to the OS.

    ka4txy wrote:
    Last week I downloaded the latest OS update for my iPhone 5S. Now, a popup window states the password is invalid for voicemail. I have never needed a password or I don't need one or want one. Have searched is setup to find a way to turnoff the required password. Phone has been like this since the update to the OS.
    If you are getting a voicemail password prompt, that usually means you have a voicemail.  In order to hear it you will need to enter the passcode, it only needs to be entered once.
    To reset your passcode, call your service provider.

  • Wich function (class) could I use to create one pixel high object (frame)?

    Hi guys, I need a pointer on a certatin line on the graphic screen. And I want it to be written in Java. I know how to make it to be "always on top" now, but AFAIK every applet or application is to be shown in a bordered window saying it is a Java object for security reasons. As I want it to be one pixel high, I apparently need to get rid of the frame border. Supposedly I have to switch off the security, but it's OK for me.
    Wich function (class) do I use to create one pixel high object?
    And one more thing. How do I generally show a graphic object of nonrectangular shape out of the bordered frame? Is there a way to do it without creating an transparent rectangular window/frame?

    I didn't quite know what you mean, but how's this?
    public class MySinglePixelWindow extends JWindow {
       public MySinglePixelWindow() {
          super();
          setSize(1,1);
          setLocation(0,0);
       public void paint(Graphics g) {
          super.paint(g);
          g.fillRect(0,0,1,1);
    }Transparent Window:
    public class MyTransparentWindow extends JWindow {
       java.awt.Robot robot;
       BufferedImage screen;
       public MyTransparentWindow() {
          super();
          try {
             robot = new Robot();
          } catch(Exception e) {}
       public void show() {
          image = robot.createScreenCapture(getBounds());
          super.show();
       public void paint(Graphics g) {
          super.paint(g);
          Graphics2D g2 = (Graphics2D)g;
          g.setComposite(AlphaComposite.newInstance(AlphaComposite.SRC_OVER,0.8));
          g.drawImage(image,0,0,this);
    }Puh!
    You can't move this window though...
    Nille

  • One pixel around borderless image in table

    Hey,
    I have an image in a table. I set the background color of the
    table to a greyish blue, because the table is taller than the image
    and i want there to be color below the image in the table. BUT ONLY
    in the table. The width of the table is the same as the image. For
    some reason, there is one pixel of the background color of the
    table around the jpg, and I cant get it to go away. I tried
    cellpadding="0", but that didn't do anything. I also tried negative
    numbers, but taht didnt do anything either. Am I SOL or can I put
    this image in the table without having the background exceed the
    image?
    Simple:
    <table width="600" border="0" align="center">
    <tr>
    <td width="216"
    background="../../Images/tablebgcolor.jpg"><p><img
    src="../../Images/Old Main.jpg" alt="" width="216"
    height="332"/></p>
    </td>
    <td width="374"> </td>
    </tr>
    </table>
    Note that I used the image of the background color instead of
    setting the background color itself. In either case it's the same,
    and I can't get a different result. Thanks for the help,
    --G

    What happens if you remove the <p> tag around the
    image?
    <p> tags have a default padding, so unless you zero
    that out or move the
    image of of the <p> you'll get some spacing around it.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    "117236" <[email protected]> wrote in
    message
    news:gbkakt$8me$[email protected]..
    > Hey,
    > I have an image in a table. I set the background color
    of the table to a
    > greyish blue, because the table is taller than the image
    and i want there
    > to be
    > color below the image in the table. BUT ONLY in the
    table. The width of
    > the
    > table is the same as the image. For some reason, there
    is one pixel of
    > the
    > background color of the table around the jpg, and I cant
    get it to go
    > away. I
    > tried cellpadding="0", but that didn't do anything. I
    also tried negative
    > numbers, but taht didnt do anything either. Am I SOL or
    can I put this
    > image
    > in the table without having the background exceed the
    image?
    >
    > Simple:
    >
    > <table width="600" border="0" align="center">
    > <tr>
    > <td width="216"
    background="../../Images/tablebgcolor.jpg"><p><img
    > src="../../Images/Old Main.jpg" alt="" width="216"
    height="332"/></p>
    > </td>
    > <td width="374"> </td>
    > </tr>
    > </table>
    >
    > Note that I used the image of the background color
    instead of setting the
    > background color itself. In either case it's the same,
    and I can't get a
    > different result. Thanks for the help,
    > --G
    >

  • Installed windows 7 over windows 8. Now I want to recover back to windows 8.

    Hello Everybody!
    OK so here is my situation. I bought a Pavilion G7-2235DX with windows 8. I made one recovery disc becuase I was impatient and figured that my recovery partition would be enough. 
    I decided immediately to install windows 7, and I installed windows 7 and kept the GPT/GUID partition tables intact and left the recovery partition.
    Now I want to go back to windows 8.
    I hit F11 and entered the recovery program and selected the notebook harddrive as the recovery method. However this is when I get an Error that says no bootable disk and asks me to insert a boot disk and I cant continue. 

    Hi:
    Normally the recovery partition won't work when you install a non HP-imaged OS on the C:\ drive.
    I would imagine your only way out is to order recovery media for your notebook from HP.
    Click on the link below and then click on the link labeled Order Recovery Media.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4132&lc=en&cc=us&dlc=en&sw_lang=&product=5317...
    Was there a problem with W7 on your PC, or do you just want to go back to W8?

  • How can I make my PDF open to "Fit One Full Page to Window" by default regardless of who is opening it?

    Hi, everyone. I am currently creating PDFs that have different page sizes (2 pages at 8.5" x 11" and other pages that range from 40"w x 80"h to 150"w x 150"h). I'm trying to package some artwork templates and artwork guidelines together for my clients to make it easier for them to access this information.
    The current issue I am running into is that I cannot figure out how to make these PDFs open with a default view of "Fit One Full Page to Window". I know how to set the default on my Acrobat Reader but I need it to default to this view when someone else opens it on their computer to view. (PDF currently opens the first page correctly but the rest of the pages are not previewing to fit page based on their page size. The only thing that reacts the way I want these documents to be viewed is the "Fit One Full Page In Window" option but I need to know how to default the PDF to view this way every time.)
    Any help is appreciated! I'm under a deadline so the sooner I can resolve this the better!
    Thanks in advance!
    Jenny

    There is an option for the Initial View that is "Magnification:" "Fit Page".  And this works for the initial page when the PDF is opened and it does not matter what the page size it, Acrobat/Reader will automatically fill the screen with the page. If you want the zoom type to change with each page then you need  add a page open script to each page to set the pages zoom type to "zoomtype.fitP"
    this.zoomType = zoomtype.fitP;

  • Need to clone one pixel at a time.

    I use the clone stamp for very fine detail (using CS3). Why, when I sample one pixel, it clones four? I have six books on CS3 and can't find the answer. I am using a basic hard 1 pixel brush with 100% opacity, flow, and hardness.
    In other words, when I sample one red pixel, I get four pixels in various shades of red. This frustrates me so much, that I use my son's Paint Shop Pro program when I need to do a lot of clone work.

    Using the clone tool, I sample one pixel (with the Alt key), and move to another area to fill. The "fill" area becomes four pixels. I did not have this problem with CS2.
    Yes, I want to clone (copy) one colored pixel to another area. Am I missing a setting? Should I reinstall CS3? Does CS4 have this problem? Returning to CS2 is not an option.
    Until I can resolve this problem, I will continue to use Paint Shop Pro for detailed clone work. It just seems ridiculous that a $59 program can do what CS3 can't.
    I appreciate any and all suggestions.

  • One pixel vertical line on new iMac 24" display - defective?

    I have a one pixel vertical line that is fairly constant on my new (one week old) 24" iMac -- it sits there between the Edit and View mens mocking me, and runs the length (well, height) of the screen.
    I've tried changing resolutions and resetting the SMC and neither seemed to do anything. My guess is it's defective, so I'm probably looking at a trip to our nearby Apple Store... the only thing is, I don't want to be without my computer for an extended period of time, since I use it for work and everything.
    Is this the sort of thing that the Apple Store could order the new part and do the swap in house? If they replace the whole unit, could I put the existing HD in it? (of course the defect shows up right after I migrate and do all my upgrades, installs and patches)

    I recently just had the LCD on my 24" imac replaced due to a stuck pixel. Without even bringing my imac into the apple store i told one of the genius bar associates about my problem and they ordered the LCD without even seeing my computer. They then called me when it came in and i took it down there for it to be replaced. I took it on a monday morning and i went and picked it up on tuesday. It is an in house repair so as long as they are not super busy you should not have to be without it for to long. I would try what i did, go in their without your imac first and tell them your issue and see if they will order the part. That way your not leaving your imac there while they order the part in.

  • One Pixel Borders Print Fine But Only Display At Magnification

    I've looked around at some other posts on image borders and haven't seen any posts about image borders that print fine but do not predictably display in the PDF. For example, I add one-pixel borders to PNG images I create in SnagIt. I then use FrameMaker (8 and 11) to generate PDFs. When I view the PDFs in Acrobat Standard or Adobe Reader, the various sides of the rectangular border appear differently (some missing, some fat, some thin) until I magnify way over 100 %.
    My document reviewers are routinely telling me I've neglected to add the 1 px border to every side if the images, but they are there--just only visible when the document is printed or when it's enlarged on the screen.
    Are there any tricks for getting Adobe Acrobat/Reader to display these 1 px borders consistenly on screen? I should mention that this is also the case if I generate PDFs from MadCap Flare.

    Vincenzo
    By all means, blog. But I'm wondering if something along the lines of a petition / open letter format might be more effective in affecting the corporate decision-making process. Those of us affected should discuss and, if possible, get help on who and how to get this addressed. That's why I've asked for advice on who the relevant person is who I should contact. If you've ever worked in a bureaucracy you know that sometimes talking to the right person can save a lot of time and trouble.
    BTW, if the Apple moderators are following this thread, I'd be pleased to know what your thoughts are on this issue. This problem seems fairly common, but only among users of the 1.67 iteration of the 17" PB (as far as I know). We are users who invested a lot of money in the best (& most expensive) mobile hardware that Apple had to offer at the time of purchase. We're probably faithful customers who, in time, will spend a lot more money on Apple hardware in the future. Why squander goodwill over a matter like this?
    It just seems to make sense that Apple would institute a limited recall to fix this known and obvious fault. It's a good idea for us and for them.
    Peace
    G
    PowerBook G4, 17, 1.67   Mac OS X (10.4.7)   1 GB RAM, 60 GB IPod Photo
    PowerBook G4, 17, 1.67   Mac OS X (10.4.7)   1 GB RAM, 60 GB IPod Photo

  • *Want to close the present window before going to the url page.

    *Want to close the present window before going to the url page.
    Hi,
    I'm using the script below to go to url function in actionscript 3, and it works fine:
    btn.addEventListener(MouseEvent.CLICK,e);
    function e(e:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.angelfire.com/in/HisTruth/copyofindex.html"));
    It's fine but I want the first window to close and then open up into the one its pointing to.
    How should I add the correct script to this?
    Tseyigai

    I am not sure what you want between the title and your description, but try adding _self as the window argument...
    function e(e:MouseEvent):void{
    navigateToURL(new URLRequest(http://www.angelfire.com/in/HisTruth/copyofindex.html), "_self");

  • How to Create Windows ISO Show Only One Windows Version

    Dear,
    I want to create Windows ISO server for 2012, but I want this ISO show me only one version of the Windows for example, I have Core version, Standard, DataCenter etc..So I don't need after I create ISO to show me all those choose versions, I need show me
    only for example windows standard version during windows server 2012 installation, kindly I need steps to create this ISO.
    Thanks..

    Hi Dana.Kadi,
    You use WIM file and oscdimg tool to create a bootable ISO image, you can refer the following similar thread:
    WIM to ISO or what
    https://social.technet.microsoft.com/forums/windowsserver/en-US/164c629a-c702-4b46-b3a2-6441e7e7f6ed/wim-to-iso-or-what
    making bootable dvd for loading install.wim image
    https://social.technet.microsoft.com/forums/windows/en-US/882d06e8-1ff5-4aff-bc5b-3418707015c5/making-bootable-dvd-for-loading-installwim-image
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How can I use the move tool to drag ONE pixel at a time?

    The move tool is stuck to snapping at ~20 pixels at a time, so when I try to move a layer by a few pixels, its super frustrating. I dont want to have to use the arrow keys, I should be able to drag wherever I want.
    How can I stop the move tool from snapping? I want to drag things precisely. I am zoomed at 100% if that makes a difference. I cant find anything about this under Preferences.

    kelly-bot wrote:
    Thanks for the tip, but like I said, I dont want to always have to use the arrow keys. Is it not possible to actually DRAG one pixel at a time? I recently upgraded to CC from CS3 and I keep running into things that feel like a downgrade. Super disappointed.
    Our posts overlapped there.  Are you saying you could reliably drag one pixel with CS3? 
    What other issues are you having?  Things like the Crop tool can feel strange at first, but I promise you you'll never want to use Classic mode once you get used to it.

Maybe you are looking for