Figma-Linux / figma-linux-font-helper

Font Helper for Figma for Linux x64 platform
GNU General Public License v2.0
410 stars 34 forks source link

[feature] Uninstall instructions on README.md #11

Open maxjf1 opened 4 years ago

maxjf1 commented 4 years ago

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

Globulle commented 3 years ago

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!

MartCube commented 3 years ago

1+

shuvo-paul commented 2 years ago

systemctl stop fonthelper.service systemctl disable fonthelper.service sudo rm /lib/systemd/system/fonthelper.service

whoislewys commented 2 years ago

dont forget

sudo rm /opt/FontHelper/fonthelper
sudo rm -r /var/log/fonthelper
jefftayyab commented 1 year ago

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!