dotfiles/home-manager/modules/xmonad/scripts/xmonad-reload.sh
MagicRB 05d186d304
Redo xmonad config, allows for new packages and LSP
Signed-off-by: MagicRB <richard@brezak.sk>
2023-10-03 16:54:07 +02:00

10 lines
191 B
Bash

notify-send -t 5000 "recompiling xmonad"
if xmonad --recompile
then
notify-send -t 5000 "compilation succeeded"
xmonad --restart
else
notify-send -t 5000 "compilation failed"
fi