@Emphrath Of course! Here you have:
#!/bin/bash
# Set variables
filelist_dir=/home/phablet/Documents/anbox
bk_dir=/home/phablet/Documents/anbox/bk
files_dir=/home/phablet/.local/share/applications
filelist=list_files.txt
# Delete dir bk if exists and create it again
rm -rf $bk_dir
mkdir $bk_dir
# Get string of files to mv from filelist
files=$(cat $filelist_dir/$filelist)
# Append files_dir to each file
files_to_mv=$(for file in $files; do echo $files_dir/$file; done)
# Move all files from files_dir into bk_dir
for file in $files_to_mv; do mv $file $bk_dir; done
This file is called desktop-delete.sh, and reads a file called list_files.txt that contains all apps to hide. In my case, it contains the following (see .local/share/applications for all apps):
anbox-com-android-inputmethod-latin.desktop
anbox-com-android-inputmethod-latin.png
anbox-com-android-calculator2.desktop
anbox-com-android-calculator2.png
anbox-com-android-calendar.desktop
anbox-com-android-calendar.png
anbox-com-android-contacts.desktop
anbox-com-android-contacts.png
anbox-com-android-deskclock.desktop
anbox-com-android-deskclock.png
anbox-com-android-documentsui.desktop
anbox-com-android-documentsui.png
anbox-com-android-email.desktop
anbox-com-android-email.png
anbox-com-android-gallery3d.desktop
anbox-com-android-gallery3d.png
anbox-com-android-music.desktop
anbox-com-android-music.png
anbox-com-android-settings.desktop
anbox-com-android-settings.png
anbox-org-chromium-webview_shell.desktop
anbox-org-chromium-webview_shell.png
I have both files contained in this path: Documents/anbox. The file delete-desktop.sh should be executable (do chmod a+x Documents/anbox/delete-desktop.sh).
Having all this, is just a matter of executing the script (./Documents/anbox/delete-desktop.sh) and should work fine!