__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#! /bin/sh
set -e
TARGET=/usr/share/icons/default/index.theme
ICONDIR=/etc/X11/cursors
# breeze_cursors with 102 (DMZ+2) priority
update-alternatives --install $TARGET x-cursor-theme \
$ICONDIR/breeze_cursors.theme 102
# Breeze_Snow with 41 (Oxygen+1) priority
update-alternatives --install $TARGET x-cursor-theme \
$ICONDIR/Breeze_Snow.theme 41
case "$1" in
configure)
# On upgrade from a version that was badly managing the
# x-cursor-theme, remove the old ones from the alternatives.
version="$2"
if [ -n "$version" ] && \
dpkg --compare-versions "$version" lt "4:5.4.1-2~"; then
update-alternatives --remove x-cursor-theme \
/usr/share/icons/Breeze_Snow/index.theme || true
update-alternatives --remove x-cursor-theme \
/usr/share/icons/breeze_cursors/index.theme || true
fi
;;
esac