Mode dunst keyboard shortcuts

The keyboard shortcuts defined in the configuration file have been deprecated,
instead dunst now comes with a ‘dunstctl’ command that should be used.
This commit is contained in:
Tom Willemse 2020-11-13 23:21:48 -08:00
parent 83358d1f5c
commit 55be69cca8
2 changed files with 10 additions and 30 deletions

View file

@ -189,36 +189,6 @@
corner_radius = 10 corner_radius = 10
#+end_src #+end_src
* Keyboard shortcuts
#+BEGIN_SRC conf-unix
[shortcuts]
#+END_SRC
Use Mod4+m to close the latest message.
#+BEGIN_SRC conf-unix
close = mod4+m
#+END_SRC
Use Mod4+Shift+m to close all messages.
#+BEGIN_SRC conf-unix
close_all = mod4+shift+m
#+END_SRC
Use Mod4+Control+m to retrieve a message from history.
#+BEGIN_SRC conf-unix
history = mod4+ctrl+m
#+END_SRC
Use Mod4+Alt+m to show the context menu.
#+BEGIN_SRC conf-unix
context = mod4+mod1+m
#+END_SRC
* Styles * Styles
#+BEGIN_SRC conf-unix #+BEGIN_SRC conf-unix

View file

@ -0,0 +1,10 @@
#!/usr/bin/env zsh
if ! whence hc; then
hc() { herbstclient "$@"; }
fi
hc keybind Mod4-apostrophe spawn dunstctl close
hc keybind Mod4-quotedbl spawn dunstctl close-all
hc keybind Mod4-Control-apostrophe spawn dunstctl history-pop
hc keybind Mod4-Mod1-apostrophe spawn dunstctl context