#!/bin/bash
debianVersion=`cat /etc/debian_version`
if [[ $debianVersion==12.* ]]; then
	cd /tmp
	killall dde-dock dde-osd -9
	nohup dde-dock &
fi
