To remove disabled snaps check them out first
At the terminal -----> snap list
Do you notice all the disabled Snaps?
Then use this command (I've checked it out first)
snap list --all | awk '/désactivé|disabled/{print $1, $3}' | while read snapname revision; do sudo snap remove "$snapname" --revision="$revision"; done
It works
At the terminal -----> snap list
Do you notice all the disabled Snaps?
Then use this command (I've checked it out first)
snap list --all | awk '/désactivé|disabled/{print $1, $3}' | while read snapname revision; do sudo snap remove "$snapname" --revision="$revision"; done
It works
Comment