my-env/uninstall/lite-xl

24 lines
476 B
Plaintext
Raw Normal View History

2022-11-03 14:49:09 +00:00
#!/bin/bash
##makedesc: Uninstall lite-xl
echo
echo "==============================================="
echo "Uninstalling lite-xl..."
echo "==============================================="
echo
set -x
rm -rf \
2023-04-14 04:06:40 +00:00
"$HOME/.local/bin/lite-xl" \
"$HOME/.local/share/applications/org.lite_xl.lite_xl.desktop" \
"$HOME/.local/share/lite-xl" \
"$HOME/.config/lite-xl"
2022-11-03 14:49:09 +00:00
sudo update-desktop-database && \
xdg-desktop-menu forceupdate
set +x
echo
echo "Finish!"
echo