mirror of
https://github.com/linuxserver/proot-apps.git
synced 2026-01-15 09:41:42 +08:00
10 lines
351 B
Bash
Executable File
10 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
for APP in base calc draw impress math writer; do
|
|
echo "Removing icon $APP"
|
|
rm -f $HOME/.local/share/icons/hicolor/scalable/apps/libreoffice-${APP}.svg
|
|
echo "Removing start menu entry $APP"
|
|
rm -f $HOME/.local/share/applications/${APP}-pa.desktop
|
|
echo "Removing desktop shortcut $APP"
|
|
rm -f $HOME/Desktop/${APP}-pa.desktop
|
|
done
|