Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 4093  / 3 Years ago, wed, june 9, 2021, 11:38:10

enter image description here



The apps that have red dots next to them, I want to uninstall, since I have synapse, kazam, xpad instead and the rest, I don't need. I tried Software Center, and synaptic and apt-get, and could not locate them.



Also how to remove xfce4-terminal? I tried apt-get, but it will remove a billion library related to xfce, is it safe to remove it that way? Because I have terminator and xterm.



I want to remove the Electronic section, because it only has Arduino IDE, which is also available in the development section, thus I don't need it.


More From » apt

 Answers
0

Here's a script to find the package names:



programs_to_rm=('Application Finder' 'Notes' 'Onboard' 'Orage Globaltime' 'Screenshot')

results=()
for prog in "${programs_to_rm[@]}"; do
result="$(grep -lR -m1 "^Name=$prog$" /usr/share/applications | tail -n1)"
result="$(dpkg -S "$result" | head -n1)"
results+=("${result%%: *}")
done

echo "${results[@]}"


Basically, this should work:



sudo apt-get remove xfce4-appfinder xfce4-notes onboard orage xfce4-screenshooter





To remove the Electronics section:




  1. Command:



    sudo -H nano "$(grep -lRm1 'Arduino IDE' /usr/share/applications)"

  2. Press Ctrl+W, then type Categories=Enter. Edit the line to remove Electronics;.



[#27377] Friday, June 11, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
arbaour

Total Points: 346
Total Questions: 115
Total Answers: 105

Location: Oman
Member since Wed, Apr 12, 2023
1 Year ago
;