view bing4desktop/remove_desktop.sh @ 31:c1061f0721d7

bing4desktop-0.240208-1.2
author prymula <prymula76@outlook.com>
date Thu, 08 Feb 2024 16:14:36 +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