39,41c39,52 < *command = "top"; < *in_terminal = TRUE; < *startup_notification = FALSE; --- > gchar * h = g_find_program_in_path( "htop"); > if ( h != NULL ) > { > g_free( h ); > *command = "htop"; > *in_terminal = TRUE; > *startup_notification = FALSE; > } > else > { > *command = "top"; > *in_terminal = TRUE; > *startup_notification = FALSE; > }