[feature] Uninstall instructions on README.md
maxjf1 opened this issue · 5 comments
Thanks for this great tool! Saving Linux users lifes!
I intend to use figma for a short time, so i just wanted to know how to uninstall this tool, but README.md
doesn't provide much information (only how to disable automatic updates).
Also, i had to add fonts in ~/.local/share/fonts
and ~/.fonts
folders. I know they are not default on every linux, but would be great to have this tip in the settings section.
Anyway thanks for the help
Hi, I am in the same situation as @maxjf1 : after a short use, I would like to uninstall this nice tool. Could you provide some clues for this ? Thanks!
1+
systemctl stop fonthelper.service
systemctl disable fonthelper.service
sudo rm /lib/systemd/system/fonthelper.service
dont forget
sudo rm /opt/FontHelper/fonthelper
sudo rm -r /var/log/fonthelper
Might want to create res/uninstall.sh.
Stop and disable services
systemctl --user stop figma-fonthelper.service systemctl --user stop figma-fonthelper-updater.service systemctl --user disable figma-fonthelper.service systemctl --user disable figma-fonthelper-updater.service
Remove services
rm -f ~/.config/systemd/user/figma-fonthelper.service rm -f ~/.config/systemd/user/figma-fonthelper-updater.service
Reload systemd user services
systemctl --user daemon-reload
Remove program files
rm -rf ~/.local/share/figma-fonthelper
Remove program configuration files
rm -rf ~/.config/figma-linux
Remove downloaded tar.xz file
rm -f /tmp/fonthelper.tar.xz
Modifications needed!