Add notification daemon configuration
This commit is contained in:
parent
249573a919
commit
689d8c2fae
3 changed files with 77 additions and 4 deletions
48
.config/dunst/dunstrc
Normal file
48
.config/dunst/dunstrc
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
[global]
|
||||||
|
font = "Roboto Regular 14"
|
||||||
|
allow_markup = yes
|
||||||
|
format = "<b>%s %p</b>\n%b"
|
||||||
|
sort = yes
|
||||||
|
indicate_hidden = true
|
||||||
|
# geometry = "x5"
|
||||||
|
idle_threshold = 0
|
||||||
|
geometry = "300x10-30+52"
|
||||||
|
alignment = center
|
||||||
|
show_age_threshold = 60
|
||||||
|
sticky_history = yes
|
||||||
|
follow = mouse
|
||||||
|
word_wrap = yes
|
||||||
|
separator_height = 2
|
||||||
|
padding = 20
|
||||||
|
horizontal_padding = 20
|
||||||
|
separator_color = frame
|
||||||
|
separator_height = 3
|
||||||
|
startup_notification = false
|
||||||
|
dmenu = "/usr/bin/dmenu -p dunst: -nb #FFFFFF -nf #000000 -sb #94DBFF -sf #000000"
|
||||||
|
browser = /usr/bin/firefox
|
||||||
|
|
||||||
|
|
||||||
|
[frame]
|
||||||
|
width = 0
|
||||||
|
color = "#7780a1"
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
close = ctrl+space
|
||||||
|
close_all = ctrl+shift+space
|
||||||
|
history = ctrl+grave
|
||||||
|
context = ctrl+shift+period
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
background = "#2F343F"
|
||||||
|
foreground = "#D3DAE3"
|
||||||
|
timeout = 10
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "#2F343F"
|
||||||
|
foreground = "#FFFFFF"
|
||||||
|
timeout = 15
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "#2F343F"
|
||||||
|
foreground = "#F27835"
|
||||||
|
timeout = 0
|
20
.config/mako/config
Normal file
20
.config/mako/config
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
font=Roboto Regular 14
|
||||||
|
border-size=0
|
||||||
|
background-color=#2F343F
|
||||||
|
text-color=#D3DAE3
|
||||||
|
padding=15
|
||||||
|
margin=25
|
||||||
|
progress-color=over #D3DAE3
|
||||||
|
default-timeout=10000
|
||||||
|
width=350
|
||||||
|
height=200
|
||||||
|
|
||||||
|
[urgency=normal]
|
||||||
|
text-color=#FFFFFF
|
||||||
|
progress-color=over #FFFFFF
|
||||||
|
default-timeout=15000
|
||||||
|
|
||||||
|
[urgency=high]
|
||||||
|
text-color=#F27835
|
||||||
|
progress-color=over #F27835
|
||||||
|
default-timeout=0
|
|
@ -271,9 +271,6 @@ default_border pixel 0
|
||||||
gaps inner 10
|
gaps inner 10
|
||||||
# gaps outer -5
|
# gaps outer -5
|
||||||
|
|
||||||
# applets
|
|
||||||
exec --no-startup-id nm-applet --indicator
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Workspace bar
|
# Workspace bar
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
@ -281,12 +278,20 @@ bar {
|
||||||
swaybar_command waybar
|
swaybar_command waybar
|
||||||
}
|
}
|
||||||
|
|
||||||
set $gnome-schema org.gnome.desktop.interface
|
# ------------------------------------------------------------------------------
|
||||||
|
# Applets
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
exec --no-startup-id nm-applet --indicator
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# Notification daemon
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
exec --no-startup-id /usr/bin/mako
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# GTK3
|
# GTK3
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
set $gnome-schema org.gnome.desktop.interface
|
||||||
exec_always {
|
exec_always {
|
||||||
gsettings set $gnome-schema gtk-theme 'Arc-Darker'
|
gsettings set $gnome-schema gtk-theme 'Arc-Darker'
|
||||||
gsettings set $gnome-schema icon-theme 'Moka'
|
gsettings set $gnome-schema icon-theme 'Moka'
|
||||||
|
|
Loading…
Reference in a new issue