You can do what I did and implement a sprite as the cursor.
call <window name>.setMouseCursorVisible(false);
to turn off cursor while inside the window.
Then within your window make a sprite with the cursor texture you would like.
Now all you have to do is set the sprite origin to the cursors location
sf::vector2i mouse = sf::Mouse::getPosition(<window name>);
<cursor sprite>.setOrigin(mouse.x, mouse.y);
For me personally I had to change the coordinates to negatives before I saw the cursor flying around my window. I'm not that knowledgeable in SFML so I don't know if that's how its supposed to be.
I want this as well, because even at its most basic there is a noticeable delay in a software rendered cursor, see attached video.
#include <SFML/Graphics.hpp>
int main() {
sf::RenderWindow win{sf::VideoMode{1600, 900}, "Cursor test"};
while (win.isOpen()) {
sf::Event e;
while (win.pollEvent(e))
if (e.type == sf::Event::KeyPressed) { win.close(); }
sf::RectangleShape rect{sf::Vector2f{50, 50}};
rect.setPosition(sf::Vector2f{sf::Mouse::getPosition(win)});
win.clear();
win.draw(rect);
win.display();
}
}