blob: 33d874f5360b29fb93f3019f76ce6b4dae30d26e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "Nugget Doom uses FluidSynth for high-quality MIDI playback."
echo "You can install a soundfont package such as 'soundfount-fluid', or add your"
echo "own soundfont directories to soundfont_dir in ~/.local/share/nugget-doom/nugget-doom.cfg"
echo "Soundfonts can be selected from the Options -> General menu inside Nugget Doom."
echo "See also https://wiki.archlinux.org/title/FluidSynth for more information."
}
post_upgrade() {
post_install
}
|