首页 > 其他分享 >dunst config

dunst config

时间:2023-12-25 22:01:20浏览次数:20  
标签:dunst icons 16 Dark bruno home Flatery config


[urgency_low]
foreground = "#eceff4"
background = "#1c2027"

[urgency_normal]
foreground = "#eceff4"
background = "#1c2027"
; background = "#ff0000"

[urgency_critical]
foreground = "#bf616a"
background = "#1c2027"

[global]
font = Ubuntu 11
geometry = 800x4-150+4
; transparency = 10
padding = 5
horizontal_padding = 8
; alignment = right
separator_color = "#2e3440"
separator_height = 1
corner_radius = 4
markup = full
shrink = true
ignore_newline = true
; word_wrap = true

; Icons
icon_position = left
max_icon_size = 18
; Flatery-Dark icons
icon_path = "/home/bruno/.icons/Flatery-Dark/actions/16:/home/bruno/.icons/Flatery-Dark/apps/16:/home/bruno/.icons/Flatery-Dark/devices/16:/home/bruno/.icons/Flatery-Dark/emblems/16:/home/bruno/.icons/Flatery-Dark/mimetypes/16:/home/bruno/.icons/Flatery-Dark/panel/16:/home/bruno/.icons/Flatery-Dark/places/16"

; Actions
show_indicators = false
mouse_left_click = do_action
mouse_right_click = close_all
dmenu = rofi -dmenu -i -p Notification
browser = x-www-browser

; format = "%s  —  %b"
; format = "%s  /  %b"
format = "%s  -  %b"

[shortcuts]
history = "shift+mod1+Delete"
close_all = "mod1+Delete"

; Don't show the separator between the summary and body if there is no body
[bruno_format_bodyless]
body = ""
format = "%s"

; Delay notifications when in fullscreen to show when coming out of fullscreen
[bruno_delay_fullscreen]
fullscreen = pushback

[bruno_skip_geary]
desktop_entry = "org.gnome.Geary"
skip_display = true

标签:dunst,icons,16,Dark,bruno,home,Flatery,config
From: https://www.cnblogs.com/c0ldzera/p/17927062.html

相关文章

  • Django报错 (django.core.exceptions.ImproperlyConfigured)
    报错种类django.core.exceptions.ImproperlyConfigured:ErrorloadingMySQLdbmodule.Didyouinstallmysqlclient解决方案:1、按照mysql包pip3install-ihttp://pip.baidu.com/pypi/simple--trusted-hostpip.baidu.compymysql2、在项目同名的模块下的__init__.py文件......
  • Web.Config文件详解
    一).Web.Config是以XML文件规范存储,配置文件分为以下格式    1.配置节处理程序声明      特点:位于配置文件的顶部,包含在<configSections>标志中。    2.特定应用程序配置      特点:  位于<appSetting>中。可以定义应用程序的全局常量设置等信息.    ......
  • App.Config文件复杂对象自动映射
    Nerdle.AutoConfig是什么.NetFramework使用app.configXML文件作为默认的配置文件,visualstudio也提供很方便的配置管理功能,甚至可以自动将配置项映射到Settings类,但这仅限于简单的数据类型,比如string/int等.对于复杂类型,需要我们自己写映射代码才行.Nerdle.......
  • @ConfigurationProperties(prefix = “xx.xx.xx“) 从配置文件中取值赋给类的属性
    @ConfigurationProperties(prefix=“xx.xx.xx“)从配置文件中取值赋给类的属性@ConfigurationProperties(prefix=“xx.xx.xx”)该注解的作用是从配置文件中取值赋给类的属性,当然也可以为方法的变量赋值/***服务访问URL*/@Component@ConfigurationProperties(value......
  • C语言全局变量的extern+typedef函数指针+uvm_queue/pool/config_db/resource_db/barri
    C语言全局变量的extern全局变量在不同的文件引用,需要加上extern,才能引用到。如果没有extern关键词,则认为是一个定义,而不是引用,引发同名冲突。函数也是一样。要在本文件引用其它文件的函数,需要增补extern关键字。而其它文件,声明和定义过该函数。typedef函数指针https://zhuan......
  • WebMvcConfigurerAdapter
    WebMvcConfigurerAdapter 是SpringBoot1.x版本中用于自定义SpringMVC配置的一个类。但在SpringBoot2.x之后,这个类已经被标记为废弃,并推荐使用 WebMvcConfigurer 接口来替代。WebMvcConfigurerAdapter 提供了默认的实现,使得你可以在无需扩展 WebMvcConfigurer 接口......
  • Java登陆第二十九天——ServletConfig和ServletContext
    ServletConfigServletConfig是web.xml中,Servlet的初始化参数对象(每个Servlet都有一个ServletConfig对象)web.xml<?xmlversion="1.0"encoding="UTF-8"?><web-appxmlns="http://xmlns.jcp.org/xml/ns/javaee"xmlns:xsi="http://ww......
  • BeanFactory后置处理器之PropertySourcesPlaceholderConfigurer
    有的时候,我们需要读取配置文件中的属性,将其作为成员变量赋给对应的Bean,如下通过xml配置:<beanid="dataSource"class="com.alibaba.druid.pool.DruidDataSource"init-method="init"destroy-method="close"><propertyname="url"val......
  • Configuration 'compile' is obsolete and has been replaced with 'implementati解决
    AndroidStudio更新到3.1.2编译之前的项目直接抛出下面的异常,这让我很是头疼,经过一翻查找发现是我们配置文件中的API已经过期,我对过期的API进行修改就Over了1、异常显示Configuration‘compile’isobsoleteandhasbeenreplacedwith‘implementation’and‘api’.It......
  • Java Spring Boot 配置读取进阶篇-@ConfigurationProperties && @Value
    之前我们学习了在SpringBoot如何读取application.properties/application.yaml配置文件的配置信息,在上文中我们主要是简单地实践了些简单的设置,这次我们带着同样的问题,如果配置更加复杂,我们的配置读取又应该怎么处理呢。本文的学习主要基于SpringBoot自带的库来解析配置,......