notify.lisp 283 B

12345678910111213
  1. (in-package :stumpwm)
  2. (defcommand dunst-disable () ()
  3. (run-shell-command "pkill -SIGUSR1 dunst"))
  4. (defcommand dunst-enable () ()
  5. (run-shell-command "pkill -SIGUSR2 dunst"))
  6. (defcommand dunst () ()
  7. (run-shell-command
  8. (concat (getenv "HOME") "/.guix-profile/bin/dunst")))