I have Kalpa installed with Plasma Bigscreen.
I have tried what I think is supposed to work for removing Applications from Big Screen.
created a new directory ( ```
mkdir -p ~/.local/share/applications
then:
`for app in org.kde.falkon.desktop org.kde.kcalc.desktop; do
src=“$(find /usr/share/applications /var/lib/flatpak/exports/share/applications ~/.local/share/flatpak/exports/share/applications -name “$app” 2>/dev/null | head -n1)”
if [ -n “$src” ]; then
cp “$src” “$HOME/.local/share/applications/$app”
grep -q ‘^NoDisplay=’ “$HOME/.local/share/applications/$app”
&& sed -i ‘s/^NoDisplay=.*/NoDisplay=true/’ “$HOME/.local/share/applications/$app”
|| echo ‘NoDisplay=true’ >> “$HOME/.local/share/applications/$app”
grep -q '^Hidden=' "$HOME/.local/share/applications/$app" \
&& sed -i 's/^Hidden=.*/Hidden=true/' "$HOME/.local/share/applications/$app" \
|| echo 'Hidden=true' >> "$HOME/.local/share/applications/$app"
fi
done````
Then ran: kbuildsycoca6 --noincremental, and then rebooted.
Applications are still in Plasma Bigscreen. Any help removing Appliations from Bigscreen would be helpfull. Thank you