[Exchange and share] DeepinV23桌面美化效果(没有教程) Resolved
Tofloor
poster avatar
Beams
deepin
2023-12-23 18:55
Author

最终效果如下:
image.png
这次美化相对deepin V20.9的美化比较复杂,花了不少功夫才摸索出下面的效果。写教程会花不少时间(写的话肯定会写的比较详细,方便刚入手Deepin的新伙伴)。但写出来又担心受众面小,时间却花了。所以想先调研一下,想看美化教程的评论区扣1。

PS:对于动手能力强的小伙伴,美化过程使用了下面这些工具,可自己摸索一下:

  1. xfce4-panel
  2. polybar
  3. stalonetray
  4. lxqt-panel
  5. tint2
  6. plank
  7. conky
  8. 星火商店的图标制作器

相较于之前的美化基于dde-top-panel+tint2+plank+conky的Deepin(深度)桌面美化
中存在的缺陷,这次曲线救国,在plank可以打开全局菜单和关机界面了。方法就是使用xdotool调用快捷键,写成可执行程序,在制作成图标,停留在plank上就可以。
其中super快捷键的代码如下:

#include 
int main() {
    system("xdotool keydown super");
    system("xdotool keyup super");
    return 0;
}

制作的图标如下:

image.png

Reply Favorite View the author
All Replies
阿尼樱奈奈
Moderator
2023-12-23 19:06
#1

like

Reply View the author
咿呀咿
deepin
2023-12-23 19:53
#2

1

Reply View the author
神末shenmo
deepin
Spark-App
2023-12-23 20:05
#3

既然如此没必要写成c++

#!/bin/bash
xdotool keydown super
xdotool keyup super
Reply View the author
Beams
deepin
2023-12-23 22:35
#4
神末shenmo

既然如此没必要写成c++

#!/bin/bash
xdotool keydown super
xdotool keyup super

shell脚本有概率执行失败,所以才写的代码。哈哈tail

Reply View the author
sammy-621
deepin
2023-12-24 07:51
#5

1

Reply View the author
👀偷偷观察
deepin
2024-02-24 22:38
#6

1

Reply View the author
buyike
deepin
2024-02-24 23:20
#7

不错,可惜用不习惯双栏的。

Reply View the author