Tuesday, May 14, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 688  / 3 Years ago, sat, july 3, 2021, 12:10:55

I installed clipit by following the instructions on this page for Ubuntu (https://github.com/CristianHenzel/ClipIt#on-ubuntu) so I used the command sudo apt-get install build-essential git automake xdotool autoconf intltool autopoint gtk+-3.0 and then


tar zxvf clipit-x.y.z.tar.gz
cd clipit-x.y.z
./autogen.sh
./configure --with-gtk3
make
sudo make install

It was not showing up on the dash and I was not able to perform any modifications on its settings through preferences or any other options. So, I uninstalled it with sudo apt-get purge clipit and then sudo apt-get autoremove
I also tried remove command but it seems nothing worked and it still is usable and being shown when I search for it.


I also tried to remove it from ubuntu software but it didn't show remove but showed the button to install. I tried the command dpkg --list to see if clipit was there before starting any procedure for uninstalling but it didn't show there before and after.
H


How can I uninstall clipit completely without any trace?



Edit: This answer helped me solve this problem:
https://askubuntu.com/a/71245/1416525


It seems that you can't remove apps from the Dash, however you can manage your launchers (*.desktop files) in one of the following directories:
/usr/share/applications
/usr/local/share/applications
~/.local/share/applications
If your launcher file is in any of the first two directories, you will require root permissions to remove it.



More From » 20.04

 Answers
4

For your case uninstall via apt will not work. You need to remove clipit from /usr as while installation it default get installed there.
You can find all clipit files and remove it by below command.


sudo find / -name "clipit" -delete

[#1211] Saturday, July 3, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ippalogu

Total Points: 215
Total Questions: 127
Total Answers: 146

Location: Denmark
Member since Tue, Jul 19, 2022
2 Years ago
ippalogu questions
Tue, Jan 4, 22, 21:49, 2 Years ago
Tue, Sep 21, 21, 09:12, 3 Years ago
Wed, May 19, 21, 02:24, 3 Years ago
Mon, Dec 27, 21, 01:44, 2 Years ago
;