mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
10 lines
191 B
Bash
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
|