You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an known and annoying bug that alacritty dont show the cursor when we move on alacritty window. It would be cool if we set env variables automatically on installation:
wget -qO- https://omakub.org/install | bash
Problem:
XCURSOR_THEME and XCURSOR_SIZE are empty, alacritty use it for some reason, you could check it with:
echo $XCURSOR_THEME
echo $XCURSOR_SIZE
Solution:
Edit your ~/.profile
export XCURSOR_THEME=Yaru
export XCURSOR_SIZE=24
Ps. I just copied the solution from ChatGPT and as it works I stopped to search, so it could be improved, as I understand that its probably some common theme and size.
This is an known and annoying bug that alacritty dont show the cursor when we move on alacritty window. It would be cool if we set env variables automatically on installation:
wget -qO- https://omakub.org/install | bashProblem:
XCURSOR_THEME and XCURSOR_SIZE are empty, alacritty use it for some reason, you could check it with:
Solution:
Edit your ~/.profile
Ps. I just copied the solution from ChatGPT and as it works I stopped to search, so it could be improved, as I understand that its probably some common theme and size.
More info on
#alacritty/alacritty#5889