Add dunst handling, reduce kitty font size
This commit is contained in:
parent
68cf038d05
commit
38b3d157b8
2 changed files with 11 additions and 19 deletions
|
@ -39,6 +39,11 @@
|
||||||
history_length = 20
|
history_length = 20
|
||||||
|
|
||||||
browser = /bin/x-www-browser
|
browser = /bin/x-www-browser
|
||||||
|
dmenu = /usr/bin/rofi -dmenu -p dunst
|
||||||
|
|
||||||
|
mouse_left_click = close_current
|
||||||
|
mouse_right_click = do_action, close_current
|
||||||
|
mouse_middle_click = close_all
|
||||||
|
|
||||||
# Define the title of the windows spawned by dunst
|
# Define the title of the windows spawned by dunst
|
||||||
title = Dunst
|
title = Dunst
|
||||||
|
@ -46,32 +51,15 @@
|
||||||
# Define the class of the windows spawned by dunst
|
# Define the class of the windows spawned by dunst
|
||||||
class = Dunst
|
class = Dunst
|
||||||
|
|
||||||
# Print a notification on startup.
|
|
||||||
# This is mainly for error detection, since dbus (re-)starts dunst
|
|
||||||
# automatically after a crash.
|
|
||||||
startup_notification = true
|
|
||||||
|
|
||||||
# Manage dunst's desire for talking
|
|
||||||
# Can be one of the following values:
|
|
||||||
# crit: Critical features. Dunst aborts
|
|
||||||
# warn: Only non-fatal warnings
|
|
||||||
# mesg: Important Messages
|
|
||||||
# info: all unimportant stuff
|
|
||||||
# debug: all less than unimportant stuff
|
|
||||||
verbosity = mesg
|
verbosity = mesg
|
||||||
|
|
||||||
# Define the corner radius of the notification window
|
|
||||||
# in pixel size. If the radius is 0, you have no rounded
|
|
||||||
# corners.
|
|
||||||
# The radius will be automatically lowered if it exceeds half of the
|
|
||||||
# notification height to avoid clipping text and/or icons.
|
|
||||||
corner_radius = 0
|
corner_radius = 0
|
||||||
|
|
||||||
# Ignore the dbus closeNotification message.
|
# Ignore the dbus closeNotification message.
|
||||||
# Useful to enforce the timeout set by dunst configuration. Without this
|
# Useful to enforce the timeout set by dunst configuration. Without this
|
||||||
# parameter, an application may close the notification sent before the
|
# parameter, an application may close the notification sent before the
|
||||||
# user defined timeout.
|
# user defined timeout.
|
||||||
ignore_dbusclose = false
|
ignore_dbusclose = true
|
||||||
|
|
||||||
# %%base16_template: dunst##default %%
|
# %%base16_template: dunst##default %%
|
||||||
frame_color = "#f0f0f0"
|
frame_color = "#f0f0f0"
|
||||||
|
@ -93,3 +81,7 @@ separator_color = "#f0f0f0"
|
||||||
foreground = "#c0c0c0"
|
foreground = "#c0c0c0"
|
||||||
|
|
||||||
# %%base16_template_end%%
|
# %%base16_template_end%%
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
history = ctrl+grave
|
||||||
|
context = ctrl+shift+grave
|
||||||
|
|
|
@ -27,7 +27,7 @@ map kitty_mod+backspace change_font_size all 0
|
||||||
map kitty_mod+u input_unicode_character
|
map kitty_mod+u input_unicode_character
|
||||||
map kitty_mod+f2 edit_config_file
|
map kitty_mod+f2 edit_config_file
|
||||||
|
|
||||||
font_size 11
|
font_size 10
|
||||||
font_family DejaVu Sans Mono
|
font_family DejaVu Sans Mono
|
||||||
|
|
||||||
# %%base16_template: kitty##default-256 %%
|
# %%base16_template: kitty##default-256 %%
|
||||||
|
|
Loading…
Add table
Reference in a new issue