You are not logged in.
Without thinking I renamed my home dir to include a glyph from nerd fonts, because rice. I changed it back but its broken a few things and I have no idea how to fix it. A couple things I've noticed so far are; alacritty now opens to /home instead of /~, and rofi or dmenu give an error message about locales being missing. I'm sure there's other problems I've caused and just not noticed yet. How the heck do I fix this?
Thanks ![]()
(this is what I get for ricing at 1am instead of sleeping, isn't it?)
Offline
grep $USER /etc/passwd # There's no password in there
echo $HOME
stat $HOME
ls -l /homeOffline
What have you tried in order to rename it back?
Assuming 'minty' is the part of your homefolder's current name that isn't some weird symbol, you could try.
$ find /home/*minty* -maxdepth 0Make sure that gives only one result. If it does, it should be safe to do:
mv "$(find /home/*minty* -maxdepth 0)" /home/mintyLast edited by frabjous (2022-04-17 15:10:03)
Offline