Changing cursors ....problems

Before anybody says it :
I have searched on "howto change X11 cursors" and other similar  keywords
My problem is that it  doesn't matter where I set the  cursor viz.  Xdefaults (when using fluxbox/openbox/icewm) or in gnome-properties (when using gnome)  the new (intented) cursor just flashes for a second or so while logging in and then changes back to the default x cursor. I have even tried changing the cursor  in the GTK or icon  theme I am using but again uselessly.
I have installed many themes (both using pacman and copied into my .icons folder).
Please help.

well, you can always just change the default X cursor on a systemwide basis, by creating an index.theme file in /usr/share/icons/default/ (may have to create the default folder)
and putting in:
[Icon Theme]
Inherits=[insert your cursor theme without the brackets of course]
in the theme file. That way, your display manager will also adopt your chosen cursor theme.
NB. This assumes the cursor theme is saved to /usr/share/icons and not the .icons folder of your user.
Last edited by b9anders (2008-11-29 20:21:21)

Similar Messages

  • Is there a solution to the disappearing cursor problem yet?

    Recently upgraded my 12 core to Mountain Lion from Snow Leopard to install Media Composer. The disappearing changing cursor is driving me batty. Also My ProTools installation has become very unstable. It sometimes stops processing for about 30 seconds until it decides to access the hard drive (Not sure if it's my media drive or the system drive, both are inside the case) Any thoughts? I still have my old Snow Leopard partition so I am considering installing MC on that instead to see if that works. I can't believe this problem is still rampant. Pardon my sarcasm but I think a basic mouse function might be something you would appreaciate in a new OS. Silly me.

    With all the issues you describe, I would search for something conflicting with Mountain Lion.
    Have you booted into Safe Mode and checked to see if it works correctly there? It will take a while to boot, and it will run a bit slow, so just look for the issues you described above. If they don't appear, you've got something installed that is causing the issues.

  • Cursor Problems in Adobe Edge

    Hi!
    I have this problem.
    I opened an Adobe Edge working file, run it and there are cursor problems in the latest Adobe Edge version. I was doing a drag and drop animation. Cursor problems did not exist in the older Adobe Edge version. I had to install the latest Adobe Edge Animate as the previous version had expired. This cursor problems of going hay wire after running it from the working file, has been going on for a few animations. And it takes more time and effort for me to rectify and debug the errors before continuing with my work. By the way, the .html from the previous Adobe Edge version works alright. It is only when I want to edit the working file in the newer Adobe Edge version, that it gives me all these problems.
    i hope someone will help me and thank you for your time.

    Hi OrionsEdge,
    I'm able to solve the problem. I looked through the codes and tried changing those parts which require the symbols' position to be changed through trial and error. If i'm not mistaken, it is related with the CSS.. it is tedious, but yeah, just change a part of the symbols' position first and try out the whole animation. observe and note down what are the changes. It will help you alot in your future code editings of the animations.

  • How can I change cursor while it does something?

    hi, all
    following code dosen't change current cursor.
    I want to change cursor to wait_cursor while it opens file,
    but, it doesn't change cursor at all.
    What's problem?
    class aClass extends JFrame{
    btOpen.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){                
    int returnVal = jfcFileDialog.showOpenDialog(SourceEditor.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    openedFile = jfcFileDialog.getSelectedFile();
    setCursor( Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));      
    //read openedFile and return text
    String fileContent=readSourceFile();
    setCursor( Cursor.getPredefinedCursorCursor.DEFAULT_CURSOR));
    thank you.

    I finally figured it out. You have to set the cursor on the JFrame's GlassPane. The solution was alluded to in the Evaluation section of a couple of bug reports:
    http://developer.java.sun.com/developer/bugParade/bugs/4357573.html
    http://developer.java.sun.com/developer/bugParade/bugs/4320939.html
    There is also some discussion about this in various Forum threads. (Search for topics using "+getGlassPane +setCursor".)
    My corrected code follows. With this method, you don't even need to start up a secondary thread to get the cursor to change. I do, however, because I have other UI elements that I want to be updated (such as a sort indicator on my column headings.) I also reduce the priority of the sort thread a bit so my UI gets priority.
    Note that I removed the code that tries to remember the original cursor, since, with all the asynchronous execution going on, the wait cursor could actually be the frame's current cursor when this gets executed. If you're not doing a sub-thread as I am, you don't have to worry about this. Also, I have extended JFrame to JFrameBase to handle threading issues and consolidate redundant code (among other things not pictured here). The JFrameBase class definition follows the example code.
    Component lTopLevelComponent = JTableSortable.this.getTopLevelAncestor();
    final JFrameBase lFrame;
    if ( lTopLevelComponent instanceof JFrameBase )
        lFrame = (JFrameBase)lTopLevelComponent;
        lFrame.setFrameCursor( Cursor.getPredefinedCursor( Cursor.WAIT_CURSOR ) );
    else
        lFrame = null;
    Thread lSortThread = new Thread( "JTableSortable" ) {
        public void run()
            ((SortableTableModel)lModel).sortByColumn( lSortCol, lAscending );
            if ( lFrame != null )
                lFrame.setFrameCursor( Cursor.getPredefinedCursor( Cursor.DEFAULT_CURSOR ) );
    lSortThread.setPriority( Math.max( Thread.MIN_PRIORITY, Thread.currentThread().getPriority() - 1 ) );
    lSortThread.start();
    public class JFrameBase extends JFrame {
    public void setFrameCursor( final Cursor aCursor )
        SwingUtilities.invokeLater( new Runnable() {
            public void run()
                getGlassPane().setCursor( aCursor );
                getGlassPane().setVisible( true );

  • 10.8.2 cursor problems

    I am having terrible cursor problems after I installed 10.8.2. After starting the computer, the cursor refuses to move or jumps around, often the screen will resize. I have run the Disc Utility but that does nothing.

    Yeah, I'm running OS X Server also on a Mac Mini and from my experiences, the PCs in the household couldn't connect via SMB to the Mac Mini until I set the Workgroup and Netbios Name in the WINS tab in Network on the Mini after a reboot.
    Did any hardware change? Like maybe the router was replaced with a different brand and the Konica isn't getting the correct IP address?

  • XY Graph Cursor Problem in Labview 7.1.1?

    Hallo,
    I am  using Labview 7.1.1 and I am facing one problem with XY graph cursor. If I am moving cursor in one graph, I am expecting same movement in another Graph. But when I move cursor in Graph1, cursor in second graph moves but not to exact X value of Graph1.
    Property of Cursor in both graphs must be "Lock to Plot"
    If any body knows about this please let me know ASAP. I am attaching example VI for your reference.
    Thanks,
    Sashi
    Attachments:
    XY Graph Cursor Problem.vi ‏101 KB

    It's a curious effect. Probably the floating point coordinate is sensitive to the exact pixel alignment (I mean that this would not happen if we had for example 1 pixel per point in the X direction).
    Anyway, if you use Cursor Index instead (which is an integer) the behaviour is as expected.
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011

  • ResultSet wihtin ResultSet but causes cursor problem?

    I have a SQL error when running the code below:
    while(rs0.next()){ ...
    String s= rs0.getString(1);
    ResultSet rs=null;
    rs=getResult1(aConnnection, s);
    /*statment is created in the function and ResultSet returned */
    while(rs.next()){ ...
    rs.close();
    rs0.close();
    Error: java.sql.SQLException: ORA-01000: maximum open cursors exceeded
    The database setting is 200 cursors
    and rs0 has 300 records, rs has only one record each time. I thought there should be only 2 cursors involved, do not know how can get so many.
    Could some one help with my question?
    Thanks in advance,
    YM

    Rethink your design.
    If you let a method create a statement and a resultset, but return only the resultset, then there's no possibility to close the statetement.
    I would create the statement outside the method, pass it to the method to do the query and return the resultset, but control the statement in my calling code.
    So in your example you would hold references to 2 stattement just the same way like to their resultsets and close them all together.
    This is more clean, and maybe will solve your cursor problem.
    If you should come to the result that you would really need more open cursors (if your app runs on many clients at the same time, it could), there must be a DBMS configuration for increasing this limit.

  • How to change 'cursor'

    Is there a way to change the 'cursor' so that it is always a 'hand' or something else that is easier to see - this is for one of the users that I support. They're looking for the cursor to always be this way, no matter what (ever, regardless). I have not been able to find this feature and other Adobe users I have talked to haven't found anything like it either.

    Hi, showing some messages when moving over a button can be done by standard-functionality useing property "tooltip-text" for the button.
    If you want your own bean start with overwriting the class oracle.forms.ui.VButton, use method with code similar to the following
      protected void processMouseEvent(MouseEvent p0)
        if ((p0.getID()==MouseEvent.MOUSE_ENTERED) && this.isEnabled())
          // Add your code for changing cursor here
          super.processMouseEvent(p0);
        } else if ((p0.getID()==MouseEvent.MOUSE_EXITED) && this.isEnabled())
          // Add your code for changing cursor here
          super.processMouseEvent(p0);
        } else
          super.processMouseEvent(p0);
      }hope this helps

  • Change cursor to hourglass

    i want to change cursor to hourglass when a new servlet is loading. working of my program is that on click of submit,the present servlet unloads and a new servlet is loaded.this new servlet takes time. so i can't write the code in prevoius servlet for cursor and the new servlet which is being loaded changes cursor to hourglass only after fully loading. please help me in this regard

    Write the javascript, flush the output stream, and the hourglass should be shown right away...
    note: You should write some stuff before the javascript -- send some text maybe the top of the output page. IE has some internal buffer you have to fill up before server-side flushing works.
    Again: You should make sure you send the javascript and flush before you start processing.
    Also: You will not be able to do a send redirect if you use this approach. If this is not satisfactory, you could try using one of the "Please Wait" mechanisms described on this site (use the forum or google search for JSP "Please Wait" to find them) to do the job.

  • Can I change cursor motion using tab key?

    Hi everyone,
    I'm Tae from Japan.
    Now, I'm developing UI with WD4J and I'd like to change cursor motion.
    for example:
    - left to right
    - up and down
    Environment:
    SAP NW CE 7.1
    SAP NWDS CE 7.1 SP05
    Thanks and BestRegards,
    Tae

    Hi Tae,
    Cursor motion through Tab is default given in WD Java, Cursor goes to next defined element in view. By designing the view layout properly you can manage the cursor movement as per requirement.
    some points :
    1) Tab moves the cursor to next item (if Label property "Labelfor" is  not defined for any ui element, it considers label as one element. Hence define labelfor property)
    2)you can use any of layouts grid, matrix, flow or row to define the ui elements.
    3)Tab will go to the next element in the same container. After completing all elements in one cotainer cursor goes to next container as defined in view.
    3)Shift+Tab will move the cursor backward.
    Regards
    Deepak

  • Strange flashing cursor problem

    Hi,
    I've just finished installing Vista 32bit on my Macbook Air (1.6) and its working fine apart from one small problem - when starting up it freezes on a black screen with a flashing cursor for 2-4 mins and then will start loading Vista fine. Once in there is no problem and its stable and what not. I have had a look at some on the articles on here and other forums and the flashing cursor problem usually refers to when people try to first install a MS OS and not once one has been installed successfully.
    I only have to boot into Vista every now and then and only for a few minutes at a time so I usually spend as much time in Vista as it does loading.
    Any help appreciated.

    General purpose Mac troubleshooting guide:
    Isolating issues in Mac OS X
    Creating a temporary user to isolate user-specific problems:
    Isolating an issue by using another user account
    Identifying resource hogs and other tips:
    Using Activity Monitor to read System Memory and determine how much RAM is being used
    Starting the computer in "safe mode":
    Mac OS X: What is Safe Boot, Safe Mode?
    To identify potential hardware problems:
    Apple Hardware Test
    General Mac maintenance:
    Tips to keep your Mac in top form
    Direct you to the proper forum for MacBook :
    MacBook Series Forums 
    https://discussions.apple.com/community/notebooks?view=discussions
    http://www.apple.com/support/macbookpro
    Mac OS X Forum
    https://discussions.apple.com/community/mac_os?view=discussions
    This forum deals with a desktop/tower 65lb Mac Pro
    http://www.apple.com/support/macpro
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    http://www.apple.com/support/timemachine
    Mac OS X & Mountain Lion Community
    https://discussions.apple.com/community/mac_os
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion?view=discussio ns
    Recovery Mode
    http://support.apple.com/kb/HT4718
    Unless you did a clean install, and I can't tell what your system maintenance is whether it is what I would do. Backup / clone your system, use ML RECOVERY and erase the system partition and update with just Apple updates, don't restore anything.
    Run Apple Hardware Test.
    Take it in for a free check and diagnosis.

  • Cs5 Brush cursor problem, on MacBook pro lion, tried the latest update, and the genious dude had no idea of what to do! Apple any fix?

    Cs5 Brush cursor problem, on MacBook pro, tried the latest update, and the genious dude had no idea of what to do! Apple any fix?

    Additional Info - after working on this problem for 4 hours, I shut my laptop in frustration and took a break.  1 hour later I opened my mac and the cursor had magically returned.  No restart, no power on/off - nothing.  Frustration.  If anyone else has had this happen and has actually fixed the problem let me know. I'm sure it will reoccur.

  • Changing cursor apperiance..How?

    I'm working on some school project and I have three frames. I need to change cursor apperiance while it's over those three internal frames. I know how to handle listeners, and all other stuff I need just I cann't find any way to setup cursor apperiance...I was looking in swing but nothing..or my docs are not good...

    All descendents of Component inherit setCursor. Use it as follows:
    component.setCursor(new Cursor(Cursor.WAIT_CURSOR));

  • Hello, Trousseau session asks the password many times in a day.  What to do to change this problem? Mfrance iMac, Mac OS X (10.7.3)

    Hello,
    Trousseau session asks the password many times in a day.
    What to do to change this problem? Mfrance
    iMac, Mac OS X (10.7.3)

    ...I wonder how your question solved their question.

  • Brush Cursor Problem

    Hello, I've been experiencing a weird brush cursor issue and I haven't been able to find anything online to fix it. 
    This cursor problem is different from the "chunk of cursor missing upon resizing" issue that so many people have had.
    In Photoshop, when I resize my brush using the "[" and "]" keys, I will  often see my cursor get distorted. It will very briefly appear to the  right of where the cursor should be and it will look kind of oblong.  Another distortion that occurs is the cursor very briefly becomes a half  circle that is a bit larger than the cursor should be. This usually  happens between 150px and 250px size and occurs with all brushes.
    I'm also experiencing a distortion when I move the brush cursor over to  the panels section. This distortion appears (again, very briefly) as a  broken up horizontal line just above the brush cursor. Also, within this  line, I can see the regular pointer arrow cursor. Sometimes I see two  arrow cursors within the line and other times just one. This happens  with all brushes of size 500px or less.
    I have updated my video card drivers to the latest version and I have updated my Photoshop with the latest patch. 
    I use Photoshop CS5 64-bit, Windows 7 Home Premium 64-bit, and a Toshiba  Satellite L655-S5157 with an Intel(r) HD Graphics video card. 
    I heard about someone with a problem somewhat similar to mine and he  said he fixed it by manually deleting his preference files. He had tried  doing the shift+alt+ctrl on startup to delete his preference files, but  it didn't fix the bug (I tried it too and it didn't work for me  either). 
    I would like to try manually deleting my preference files, but I just don't know where they are. 
    Thanks for any help.

    For you (or anyone reading this thread), try to get a machine with an embedded ATI or nVidia display interface.
    Intel seems to be coming out pretty strong in the laptop market because they offer embedded GPUs in their chipsets, but Intel has a LONG way to go to get their OpenGL implementations up to par.  What I don't understand is that they've been known for having relatively poor OpenGL implementations for years now.  It's not like they're a small company who can't afford to fund a good development staff.
    To this day I'm still fighting Intel-specific problems seen by people running my own OpenGL software, where ATI and nVidia implementations are rock solid.  Stuff that's documented - such as handing off an OpenGL context between threads - just fails utterly with an Intel driver/GPU.
    -Noel

  • WAd Report - How to change Cursor Type...

    Hi,
    In BI WAD report output, the cursor type is Pointer (Hand sign). I wanted to change it to some other type, is this possible, If yes, could u pls let how can i do that. I tried a lot but didn't suceed.
    Thanks...

    I think this would be possible by having custom CSS embedded in web template. E.g. see here:
    http://www.zimmertech.com/tutorials/css/20/changing-cursors-tutorial.php

Maybe you are looking for

  • Apple ID Question/problems

    Ok, i'm sure by now this quesiton or questions like it have been asked adnausium, i'm quite sorry but i simply don't have the time, or patience to sift through possible answers or try to find similar situations. here is the lowdown, i have two apple

  • Can i set multiple users for 1 ipad

    I got my wife an Ipad. I want to know if I can set 2 users on it?

  • Usb to dvi sluggish on Mavericks MBP 2011

    So upgrading to OS X 10.9 Mavericks has made my second external monitor slightly sluggish. I'm using a Diamond DisplayLink which was running flawlessly under 10.8.5. On the DisplayLink site there are some issues noted on 10.9 and a beta driver, altho

  • GR based invoice verification (customising)

    Hi, Can somebody please give me the spro menu path to set this up? Anna-Marie

  • Why is the length of a floated div ignored by the outer wrapper?

    I'm having a hard time understanding whether floated elements are relatively or absolutely positioned. When I do a "float:right" on a narrow column, the text outside that column seems very aware of its existence. It won't appear under it - it will in