[Feelings & Sharing] 更改启动器图标为deepin的logo
Tofloor
poster avatar
满阶砌
deepin
2023-02-25 08:04
Author

可能有帖子已经发过了,但是我搜了一下,第一页没找到😂

for i in 16 24 32 48 64 96 128 256 512  
do
    mv /usr/share/icons/bloom/places/$i/deepin-launcher.svg /usr/share/icons/bloom/places/$i/deepin-launcher.svg.bk
    cp /usr/share/icons/bloom-classic-dark/places/$i/deepin-launcher.svg /usr/share/icons/bloom/places/$i/deepin-launcher.svg
done

复制上面代码到文本编辑器里,保存后命名为a.sh

chmod +x a.sh

在文件所在目录打开终端,添加运行权限

sudo ./a.sh

运行,会报一个错,因为bloom-classic-dark没有512大小的图标

重启生效

Reply Favorite View the author
All Replies
liwl
deepin
2023-02-25 15:22
#1
It has been deleted!
神末shenmo
Moderator
Spark-App
2023-02-25 17:26
#2

这样

图片.png

Reply View the author
满阶砌
deepin
2023-07-08 19:47
#3
for i in 16 24 32 48 64 96 128 256 512
do
    mv /usr/share/icons/bloom/places/$i/deepin-launcher.svg /usr/share/icons/bloom/places/$i/deepin-launcher.svg.bk
    if [ -f /usr/share/icons/bloom-classic-dark/places/$i/deepin-launcher.svg ]; then
        cp /usr/share/icons/bloom-classic-dark/places/$i/deepin-launcher.svg /usr/share/icons/bloom/places/$i/deepin-launcher.svg
    fi
done
Reply View the author