mirror of
https://github.com/GXDE-OS/GXDE.git
synced 2026-06-22 05:26:37 +08:00
8 lines
147 B
Bash
8 lines
147 B
Bash
#!/bin/bash
|
|
debianVersion=`cat /etc/debian_version`
|
|
if [[ $debianVersion==12.* ]]; then
|
|
cd /tmp
|
|
killall dde-dock dde-osd -9
|
|
nohup dde-dock &
|
|
fi
|