View Single Post
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#1
Hi,

Messing with Synergy and I'm curious -- is it possible to enable a mouse cursor to be shown all the time? I'm currently using this quick hack I knocked up
PHP Code:
#include <gdk/gdkx.h>
#include <gtk/gtk.h>

int main (void)
{
    
GdkPixbuf *pixbuf NULL;
    
GdkCursor *cursor NULL

    
gtk_init (NULLNULL);

    
pixbuf gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), "browser_cursor"320NULL);
    
g_assert (pixbuf);
    
gint x = (gdk_pixbuf_get_width (pixbuf) / 2) - 7/* Maths is shitty */
    
gint y = (gdk_pixbuf_get_height (pixbuf) / 2) - 7;

    
cursor gdk_cursor_new_from_pixbuf (gdk_display_get_default (), pixbufxy); /* I should be freeing you (and others)... */
    
g_assert (cursor);
    
gdk_window_set_cursor (gdk_window_foreign_new (GDK_ROOT_WINDOW ()), cursor);
    
g_idle_add ((GSourceFuncgtk_main_quitNULL);
    
gtk_main ();
    
    return 
0;

but the cursor flickers a lot. :\ Would anyone know if it's possible to replace the cursors, like it was on the N800?