blob: 9f5845511fdcb03a31fde41daa0dc361cc3020b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ">>> Enable the plugin:"
echo "Settings -> Configure Krita -> Python Plugin Manager -> AI Image Diffusion"
echo ">>> To show the plugin docker:"
echo "Settings -> Dockers -> AI Image Generation"
}
post_upgrade() {
post_install
}
post_remove() {
echo ">>> If you want to delete leftover data files, please check:"
echo "\$HOME/.local/share/krita/ai_diffusion"
}
|