How can I make the cursors all one cursor? Like dragging, resizing all the same cursor (the normal arrow cursor) The themes seem to have different ones for all of the different actions
But I just want to make them all the same, and not make them from scratch
You want your cake and eat it too! Understandable… but frankly impossible, therefore I’ve marked this answer as the solution to your question as it is by far the best answer you’ll get.
However, if you disagree with my choice, please feel free to take any other answer as the solution to your question or even remove the solution altogether: You are in control! (If you disagree with my choice, just send me a personal message and explain why I shouldn’t have done this or or
if you agree)
P.S. In the future, please don’t forget to come back to your question after your issue has been solved and click the 3 dots below the answer to mark a solution like this below the answer that helped you most:
so that the next person that has the exact same problem you just had will benefit from your post as well as your question will now be in the “solved” status.
I found a solution!
Symlinks: I just ran
for file in *; do
if [ -f "$file" ]; then
rm $file
ln -s default $file
fi
done
``` and they are all symlinks to default cursor :grinning_face_with_smiling_eyes:
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.