Replies: 2 comments
-
|
I really need to uninstall this extension from my system |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Did you install Fildem manually or via a deb package?
sudo apt remve fildem*
dpkg -l | grep fildem | awk '{print $2}' | xargs sudo dpkg -r
#!/bin/bash
TARGETS=(
"/usr/bin/fildem"
"/usr/bin/fildem-hud"
"/usr/lib/python3/dist-packages/fildem"
"/usr/lib/python3/dist-packages/fildem*"
"/usr/share/applications/fildem-hud.desktop"
)
for path in "${TARGETS[@]}"; do
if [ -e "$path" ]; then
echo "Deleting: $path"
sudo rm -rf "$path"
else
echo "Not found: $path"
fi
done |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
how can I uninstall fildem on Ubuntu 22, GNOME 42?
Beta Was this translation helpful? Give feedback.
All reactions