view bing4desktop/remove_desktop.sh @ 33:1d063d3bf7ff

bing4desktop-0.240208-2.1
author prymula <prymula76@outlook.com>
date Thu, 08 Feb 2024 20:41:03 +0100
parents c5f6a572bc91
children 9bcb32b7526a
line wrap: on
line source

#?/bin/sh

MYDIR=/home

for file in $(ls ${MYDIR}) ; do\
	if [ "$file" == "lost+found" ] ; then
		continue
	fi
	rm /home/${file}/.local/share/applications/bing4desktop.desktop
done