I installed Flux using following steps (source)
- git clone https://github.com/Kilian/f.lux-indicator-applet.git
- cd f.lux-indicator-applet
- sudo python setup.py install
Now I want to uninstall this application from my system. I tried looking for some script in the source which can help me, but I didn't find any. I am not sure if removing every file I find associated with this application will be a good idea.
What is the most appropriate way of uninstalling this application. Any help will be highly appreciated.
python setup.py install
. The best you can do is to remove manually where you think the installed files might be. They are most likely in/usr/local/lib
. – edwinksl Jul 31 '16 at 12:08