gpt4 book ai didi

bash - 如何从 bash 脚本(ubuntu)中的当前系统主题获取图标?

转载 作者:行者123 更新时间:2023-12-04 18:25:38 26 4
gpt4 key购买 nike

在 Ubuntu 14.10 中,我想显示一个带有当前系统主题图标的通知。在下面的代码中,第 3 行是我的意思的示例:

1  #!/bin/bash
2 # Display a notification with an icon
3 ICON="$(somehow-get-path-to-system-theme-root-dir)/rest/of/path/to/icon.svg"
4 notify-send -i $ICON "Some notification text"

是否存在这样的命令,如果存在,它是什么?

最佳答案

我认为你应该这样做

#!/bin/bash
# Display a notification with an icon
THEME=$(gsettings get org.gnome.desktop.interface icon-theme | tr -d "'")
ICON="/usr/share/icons/${THEME}/rest/of/path/to/icon.svg"
notify-send -i $ICON "Some notification text"

关于bash - 如何从 bash 脚本(ubuntu)中的当前系统主题获取图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29787249/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com